Merge pull request #4539 from nbehrnd/markdown_en

[markdown/en] add link to markdownlint
This commit is contained in:
Marcel Ribeiro Dantas 2022-11-11 10:54:17 -03:00 committed by GitHub
commit 2ddfedb512
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,9 +40,9 @@ specific to a certain parser.
Markdown is a superset of HTML, so any HTML file is valid Markdown. Markdown is a superset of HTML, so any HTML file is valid Markdown.
```md ```md
<!--This means we can use HTML elements in Markdown, such as the comment <!--This means we can use HTML elements in Markdown, such as the comment
element, and they won't be affected by a markdown parser. However, if you element, and they won't be affected by a markdown parser. However, if you
create an HTML element in your markdown file, you cannot use markdown syntax create an HTML element in your markdown file, you cannot use markdown syntax
within that element's contents.--> within that element's contents.-->
``` ```
@ -370,9 +370,10 @@ Ugh this is so ugly | make it | stop
## Markdownlint ## Markdownlint
In order to simplify work with Markdown and to unify its coding style, In order to simplify work with Markdown and to unify its coding style,
`Markdownlint` has been created. This tool is available also as a plugin for `Markdownlint` has been created. Available as a
some IDEs and can be used as an utility to ensure validity and readability of [separate tool](https://github.com/markdownlint/markdownlint)
Markdown. as well as a plugin for some IDEs, it can be used to ensure validity and
readability of Markdown.
--- ---