diff options
author | gennyble <gen@nyble.dev> | 2023-12-27 15:13:52 -0600 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2023-12-27 15:13:52 -0600 |
commit | 848b70d0cf67ccbc4634b4f28ada285d6691eecd (patch) | |
tree | f94206ae534be7c43e5154bbe9902fc87833cd38 /readme.md | |
parent | f4e186c2946c40ffbc03dfaf383e067333fc0852 (diff) | |
download | cutie-848b70d0cf67ccbc4634b4f28ada285d6691eecd.tar.gz cutie-848b70d0cf67ccbc4634b4f28ada285d6691eecd.zip |
actually special-case script/style?
I thought this was the last commit, honestly?
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/readme.md b/readme.md index 89585a8..725a71a 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,6 @@ opinionated, standards non-compliant HTML parser meant to consume handwritten HTML. -- all tags must close -- no > in tags except at the end (not even in attributes) \ No newline at end of file +- all tags must close *(even `<br/>`, `<meta/>`, `<link/>`)* +- 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 |