diff options
| -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: "<!--" ..."-->" |
