diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-12-14 18:45:49 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-12-14 18:45:49 -0800 |
| commit | 01522b619f57de5924ff1af4659170349103540b (patch) | |
| tree | 77ad5073fb90a55bc1bf10c83117f00a61b8c862 | |
| parent | 9617baf699aeff816fae50841e11123ebd9c9366 (diff) | |
Fix for html
| -rw-r--r-- | grammars/html.bp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/grammars/html.bp b/grammars/html.bp index 1f6553c..9ec33b6 100644 --- a/grammars/html.bp +++ b/grammars/html.bp @@ -11,9 +11,7 @@ template-element: "<template>"...("</template>") % (comment / html-element) raw-element: `< @tag=("script"/"style"/"textarea"/"title") __attributes__ `>...("</"tag__`>) -normal-element: `< @tag=( - "area"/"base"/"br"/"col"/"embed"/"hr"/"img"/"input"/"link"/"meta"/"param"/"source"/"track"/"wbr") - __attributes__ `>...("</"tag`>) % (comment / html-element) +normal-element: `< @tag=id __attributes__ `>...("</"tag`>) % (comment / html-element) comment: "<!--" ..."-->" |
