diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-30 07:28:21 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-30 11:22:35 +0100 |
commit | baf1477c587fe22d27e94408cf2505d588ba007e (patch) | |
tree | f3e027e3c149cfeb7187a625756ea4b2de47c82a /tests/files/test.out | |
parent | 25087cce997abc386f881648dfd39c83dfef7667 (diff) |
add spans feature
Diffstat (limited to 'tests/files/test.out')
-rw-r--r-- | tests/files/test.out | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/files/test.out b/tests/files/test.out new file mode 100644 index 0000000..7127ebc --- /dev/null +++ b/tests/files/test.out @@ -0,0 +1,17 @@ +note: + ┌─ test.html:3:17 + │ +3 │ Here is a tag: <strong >very cool</strong> + │ ^^^^^^ ^^^^^^ EndTag + │ │ + │ StartTag +4 │ +5 │ Tags can have attributes: <div id = foo >...</div> + │ ^^ ^^^ attribute value + │ │ + │ attribute name +6 │ +7 │ Attribute values can be quoted: <input name = 'age' type = "number"> + │ ^^^ ^^^^^^ in double quotes + │ │ + │ in single quotes |