mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Demonstrate html comments
This commit is contained in:
parent
c64f9231a9
commit
db4e212602
@ -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
|
guide will attempt to clarify when features are universal or when they are
|
||||||
specific to a certain parser.
|
specific to a certain parser.
|
||||||
|
|
||||||
|
- [HTML Elements](#html-elements)
|
||||||
- [Headings](#headings)
|
- [Headings](#headings)
|
||||||
- [Simple Text Styles](#simple-text-styles)
|
- [Simple Text Styles](#simple-text-styles)
|
||||||
- [Paragraphs](#paragraphs)
|
- [Paragraphs](#paragraphs)
|
||||||
@ -29,6 +30,12 @@ specific to a certain parser.
|
|||||||
- [Images](#images)
|
- [Images](#images)
|
||||||
- [Miscellany](#miscellany)
|
- [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
|
## Headings
|
||||||
|
|
||||||
You can create HTML elements `<h1>` through `<h6>` easily by prepending the
|
You can create HTML elements `<h1>` through `<h6>` easily by prepending the
|
||||||
|
Loading…
Reference in New Issue
Block a user