mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
54 lines
777 B
Markdown
54 lines
777 B
Markdown
# Proper Names No HTML
|
|
|
|
Okay text JavaScript.
|
|
|
|
Bad text javascript. {MD044}
|
|
|
|
Bad code `javascript`. {MD044}
|
|
|
|
<img src="img/javascript/image.png" alt="Description">
|
|
|
|
<script type="text/javascript">
|
|
javascript {MD044}
|
|
</script>
|
|
|
|
<a id="javascript">
|
|
|
|
<a id="javascript"/>
|
|
|
|
<javascript/>
|
|
|
|
<code>javascript</code> {MD044}
|
|
|
|
<div>javascript</div> {MD044}
|
|
|
|
<!-- javascript -->
|
|
|
|
<!--
|
|
javascript
|
|
-->
|
|
|
|
<a href="https://example.org">
|
|
|
|
<div><a href="https://example.org"></div>
|
|
|
|
<div>
|
|
<a href="https://example.org">
|
|
</div>
|
|
|
|
<div>
|
|
javascript {MD044}
|
|
<a href="https://example.org">
|
|
javascript {MD044}
|
|
</div>
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"no-inline-html": false,
|
|
"proper-names": {
|
|
"names": [
|
|
"HTTPS",
|
|
"JavaScript"
|
|
],
|
|
"html_elements": false
|
|
}
|
|
} -->
|