summaryrefslogtreecommitdiffhomepage
path: root/markdown.html.markdown
diff options
context:
space:
mode:
authorAkshita Dixit <436_bt19@iiitkalyani.ac.in>2022-11-13 14:26:32 +0530
committerAkshita Dixit <436_bt19@iiitkalyani.ac.in>2022-11-13 14:26:32 +0530
commit6384e5116639993d1cc449749e5e0df4ba736fa8 (patch)
tree2182e20675c40ea115d981c64db7ffbe3b8adead /markdown.html.markdown
parent5a9b474a635a1b0b12908f8673b6f4e1e67d0812 (diff)
parent2d59543e717f46b7defcb4b8964997f1569f78a3 (diff)
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs into docker-docs
Diffstat (limited to 'markdown.html.markdown')
-rw-r--r--markdown.html.markdown13
1 files changed, 7 insertions, 6 deletions
diff --git a/markdown.html.markdown b/markdown.html.markdown
index a6000910..cfc0ddf3 100644
--- a/markdown.html.markdown
+++ b/markdown.html.markdown
@@ -40,9 +40,9 @@ specific to a certain parser.
Markdown is a superset of HTML, so any HTML file is valid Markdown.
```md
-<!--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
-create an HTML element in your markdown file, you cannot use markdown syntax
+<!--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
+create an HTML element in your markdown file, you cannot use markdown syntax
within that element's contents.-->
```
@@ -370,9 +370,10 @@ Ugh this is so ugly | make it | stop
## Markdownlint
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
-some IDEs and can be used as an utility to ensure validity and readability of
-Markdown.
+`Markdownlint` has been created. Available as a
+[separate tool](https://github.com/markdownlint/markdownlint)
+as well as a plugin for some IDEs, it can be used to ensure validity and
+readability of Markdown.
---