about summary refs log tree commit diff
path: root/readme.md
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2024-12-18 00:27:34 -0600
committergennyble <gen@nyble.dev>2024-12-18 00:27:34 -0600
commit5ea6a13ead2a5cab0f578c8af5f0e0be88c3a08c (patch)
treef8ab97a0abeb03142da4c7a8ed859d6a408cd16a /readme.md
parentf6b441fe53dd75af5933c4456d92070ccb7bd8af (diff)
downloadcutie-5ea6a13ead2a5cab0f578c8af5f0e0be88c3a08c.tar.gz
cutie-5ea6a13ead2a5cab0f578c8af5f0e0be88c3a08c.zip
Ahhhhh HEAD main
Diffstat (limited to 'readme.md')
-rwxr-xr-x[-rw-r--r--]readme.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 49cdf8a..252c728 100644..100755
--- a/readme.md
+++ b/readme.md
@@ -3,7 +3,11 @@ Not particularly fast, probably.
 
 - 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 `>`)*
+- attributes must use `"` as their quoting character AND attributes must be
+  quoted *(no `src=image.png` nonsense. is that- does that ever even happen? i hope not)*
+- attribute keys, if they have a value, must have the `=` directly following the
+  key *(good: `src="image.png"`, bad: `src = "image.png`)*
+- self-closing tags must have the closing `/` at the very 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