about summary refs log tree commit diff
path: root/readme.md
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2023-12-27 17:18:12 -0600
committergennyble <gen@nyble.dev>2023-12-27 17:18:12 -0600
commit4b4689ca0d086e11de52cbbf848fa0873acd7274 (patch)
tree9da09a0b93cf50b47dc771e4e6ff1a9cdaae14c1 /readme.md
parent54dec82cb8620937306e9a16b4b532cb52c7ee55 (diff)
downloadcutie-4b4689ca0d086e11de52cbbf848fa0873acd7274.tar.gz
cutie-4b4689ca0d086e11de52cbbf848fa0873acd7274.zip
rountrips!
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index 725a71a..d0fc3b9 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,8 @@
 opinionated, standards non-compliant HTML parser meant to consume handwritten HTML.
 
 - all tags must close *(even `<br/>`, `<meta/>`, `<link/>`)*
+- tag names must be separated from the tag-body *(where the attributes go)* by a space character *(` `, 0x20)*
+- self-closing tags must have the closing `/` at the ver y end of the body *(directly before the `>`)*
 - no > in tags except at the end (not even in attributes)
 - inline `<script>` and `<style>` must have their closing-tag be
   first-of-line *(excluding whitespace)*
\ No newline at end of file