diff options
author | Jacob Ward <jacobward1898@gmail.com> | 2015-11-02 08:11:50 -0700 |
---|---|---|
committer | Jacob Ward <jacobward1898@gmail.com> | 2015-11-02 08:11:50 -0700 |
commit | db4e212602121c5d84fc987d47054dbbbe21b1b0 (patch) | |
tree | 16fd501e9f5d0373ea9de3901654ee0e00d69471 | |
parent | c64f9231a9e9eb797519a582a73dbca452f00672 (diff) |
Demonstrate html comments
-rw-r--r-- | markdown.html.markdown | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/markdown.html.markdown b/markdown.html.markdown index 64f5f351..5f8d31c8 100644 --- a/markdown.html.markdown +++ b/markdown.html.markdown @@ -19,6 +19,7 @@ Markdown also varies in implementation from one parser to a next. This guide will attempt to clarify when features are universal or when they are specific to a certain parser. +- [HTML Elements](#html-elements) - [Headings](#headings) - [Simple Text Styles](#simple-text-styles) - [Paragraphs](#paragraphs) @@ -29,6 +30,12 @@ specific to a certain parser. - [Images](#images) - [Miscellany](#miscellany) +## HTML Elements +Markdown is a superset of HTML, so any HTML file is valid Markdown. +```markdown +<!--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.--> +``` + ## Headings You can create HTML elements `<h1>` through `<h6>` easily by prepending the |