mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 14:30:12 +01:00
34 lines
669 B
Markdown
34 lines
669 B
Markdown
|
|
# inline_html-table_allowed_elements.md
|
||
|
|
|
||
|
|
<h1>This is allowed</h1>
|
||
|
|
|
||
|
|
<h2>This is not allowed {MD033}</h2>
|
||
|
|
|
||
|
|
<br> This is not allowed {MD033}
|
||
|
|
|
||
|
|
<br/> This is not allowed {MD033}
|
||
|
|
|
||
|
|
| Allowed | Not Allowed |
|
||
|
|
| ------------------- | ------------------ |
|
||
|
|
| <br> | |
|
||
|
|
| <br/> | |
|
||
|
|
| <table><br></table> | |
|
||
|
|
| | <h1> {MD033} </h1> |
|
||
|
|
|
||
|
|
<table>
|
||
|
|
<br/> {MD033}
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<!-- markdownlint-configure-file {
|
||
|
|
"no-inline-html": {
|
||
|
|
"allowed_elements": [
|
||
|
|
"h1",
|
||
|
|
"tAbLE"
|
||
|
|
],
|
||
|
|
"table_allowed_elements": [
|
||
|
|
"br",
|
||
|
|
"tAbLE"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
} -->
|