mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
fixed content extending beyond 80 chars
This commit is contained in:
parent
2f3597efc4
commit
2f772fff3e
@ -7,7 +7,9 @@ filename: markdown.md
|
||||
---
|
||||
|
||||
|
||||
Markdown was created by John Gruber in 2004. It's meant to be an easy to read and write syntax which converts easily to HTML (and now many other formats as well).
|
||||
Markdown was created by John Gruber in 2004. It's meant to be an easy to read
|
||||
and write syntax which converts easily to HTML (and now many other formats as
|
||||
well).
|
||||
|
||||
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
|
||||
@ -28,9 +30,10 @@ specific to a certain parser.
|
||||
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.-->
|
||||
<!--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
|
||||
@ -214,8 +217,8 @@ highlighting of the language you specify after the \`\`\`
|
||||
|
||||
## Horizontal rule
|
||||
|
||||
Horizontal rules (`<hr/>`) are easily added with three or more asterisks or hyphens,
|
||||
with or without spaces.
|
||||
Horizontal rules (`<hr/>`) are easily added with three or more asterisks or
|
||||
hyphens, with or without spaces.
|
||||
|
||||
```markdown
|
||||
***
|
||||
@ -298,7 +301,8 @@ in italics, so I do this: \*this text surrounded by asterisks\*.
|
||||
|
||||
### Keyboard keys
|
||||
|
||||
In GitHub Flavored Markdown, you can use a `<kbd>` tag to represent keyboard keys.
|
||||
In GitHub Flavored Markdown, you can use a `<kbd>` tag to represent keyboard
|
||||
keys.
|
||||
|
||||
```markdown
|
||||
Your computer crashed? Try sending a
|
||||
|
Loading…
Reference in New Issue
Block a user