learnxinyminutes-docs/markdown.html.markdown

332 lines
7.8 KiB
Markdown
Raw Normal View History

2013-08-13 01:57:23 +04:00
---
language: markdown
contributors:
- ["Dan Turkel", "http://danturkel.com/"]
- ["Jacob Ward", "http://github.com/JacobCWard/"]
2013-08-13 01:57:23 +04:00
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 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.
2015-11-02 18:11:50 +03:00
- [HTML Elements](#html-elements)
- [Headings](#headings)
- [Simple Text Styles](#simple-text-styles)
- [Paragraphs](#paragraphs)
- [Lists](#lists)
- [Code blocks](#code-blocks)
- [Horizontal rule](#horizontal-rule)
- [Links](#links)
- [Images](#images)
- [Miscellany](#miscellany)
2015-11-02 18:11:50 +03:00
## HTML Elements
Markdown is a superset of HTML, so any HTML file is valid Markdown.
2016-01-08 09:35:16 +03:00
2015-11-02 18:11:50 +03:00
```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.-->
2015-11-02 18:11:50 +03:00
```
## Headings
2013-08-13 01:57:23 +04:00
You can create HTML elements `<h1>` through `<h6>` easily by prepending the
text you want to be in that element by a number of hashes (#).
```markdown
2013-08-13 01:57:23 +04:00
# This is an <h1>
## This is an <h2>
### This is an <h3>
#### This is an <h4>
##### This is an <h5>
###### This is an <h6>
```
Markdown also provides us with two alternative ways of indicating h1 and h2.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
This is an h1
=============
This is an h2
-------------
```
2016-01-08 09:35:16 +03:00
## Simple text styles
Text can be easily styled as italic or bold using markdown.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
*This text is in italics.*
_And so is this text._
**This text is in bold.**
__And so is this text.__
***This text is in both.***
**_As is this!_**
*__And this!__*
```
2013-08-13 01:57:23 +04:00
2016-02-24 03:12:44 +03:00
In GitHub Flavored Markdown, which is used to render markdown files on
GitHub, we also have strikethrough:
```markdown
2013-08-13 01:57:23 +04:00
~~This text is rendered with strikethrough.~~
```
## Paragraphs
2013-08-13 01:57:23 +04:00
Paragraphs are a one or multiple adjacent lines of text separated by one or
multiple blank lines.
2013-08-13 01:57:23 +04:00
```markdown
2014-06-12 01:36:16 +04:00
This is a paragraph. I'm typing in a paragraph isn't this fun?
2013-08-13 01:57:23 +04:00
Now I'm in paragraph 2.
I'm still in paragraph 2 too!
I'm in paragraph three!
```
2013-08-13 01:57:23 +04:00
Should you ever want to insert an HTML <br /> tag, you can end a paragraph
with two or more spaces and then begin a new paragraph.
2013-08-13 01:57:23 +04:00
```markdown
2015-10-08 06:11:24 +03:00
I end with two spaces (highlight me to see them).
2013-08-13 01:57:23 +04:00
There's a <br /> above me!
```
2013-08-13 01:57:23 +04:00
Block quotes are easy and done with the > character.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
> This is a block quote. You can either
> manually wrap your lines and put a `>` before every line or you can let your lines get really long and wrap on their own.
> It doesn't make a difference so long as they start with a `>`.
2013-08-13 01:57:23 +04:00
> You can also use more than one level
>> of indentation?
> How neat is that?
```
## Lists
Unordered lists can be made using asterisks, pluses, or hyphens.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
* Item
* Item
* Another item
or
+ Item
+ Item
+ One more item
2015-10-08 06:11:24 +03:00
or
2013-08-13 01:57:23 +04:00
- Item
- Item
- One last item
```
2016-01-08 09:35:16 +03:00
Ordered lists are done with a number followed by a period.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
1. Item one
2. Item two
3. Item three
```
2013-08-13 01:57:23 +04:00
You don't even have to label the items correctly and markdown will still
render the numbers in order, but this may not be a good idea.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
1. Item one
1. Item two
1. Item three
```
(This renders the same as the above example)
2013-08-13 01:57:23 +04:00
You can also use sublists
2016-01-08 09:35:16 +03:00
```markdown
2013-08-13 01:57:23 +04:00
1. Item one
2. Item two
3. Item three
* Sub-item
* Sub-item
4. Item four
```
2013-08-13 01:57:23 +04:00
There are even task lists. This creates HTML checkboxes.
```markdown
Boxes below without the 'x' are unchecked HTML checkboxes.
2015-10-08 06:11:24 +03:00
- [ ] First task to complete.
- [ ] Second task that needs done
This checkbox below will be a checked HTML checkbox.
- [x] This task has been completed
```
## Code blocks
You can indicate a code block (which uses the `<code>` element) by indenting
a line with four spaces or a tab.
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
This is code
So is this
```
2013-08-13 01:57:23 +04:00
You can also re-tab (or add an additional four spaces) for indentation
inside your code
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
my_array.each do |item|
puts item
end
```
2013-08-13 01:57:23 +04:00
Inline code can be created using the backtick character `
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
John didn't even know what the `go_to()` function did!
```
2013-08-13 01:57:23 +04:00
2016-02-24 03:12:44 +03:00
In GitHub Flavored Markdown, you can use a special syntax for code
2016-01-08 09:35:16 +03:00
<pre>
<code class="highlight">&#x60;&#x60;&#x60;ruby
2013-08-13 01:57:23 +04:00
def foobar
puts "Hello world!"
end
2016-01-08 09:35:16 +03:00
&#x60;&#x60;&#x60;</code></pre>
2013-08-13 01:57:23 +04:00
2016-02-24 03:12:44 +03:00
The above text doesn't require indenting, plus GitHub will use syntax
highlighting of the language you specify after the \`\`\`
2013-08-13 01:57:23 +04:00
## Horizontal rule
2013-08-13 01:57:23 +04:00
Horizontal rules (`<hr/>`) are easily added with three or more asterisks or
hyphens, with or without spaces.
2016-01-08 09:35:16 +03:00
```markdown
2013-08-13 01:57:23 +04:00
***
---
2015-10-08 06:11:24 +03:00
- - -
2013-08-13 01:57:23 +04:00
****************
```
2013-08-13 01:57:23 +04:00
## Links
2013-08-13 01:57:23 +04:00
One of the best things about markdown is how easy it is to make links. Put
the text to display in hard brackets [] followed by the url in parentheses ()
2013-08-13 01:57:23 +04:00
```markdown
[Click me!](http://test.com/)
```
You can also add a link title using quotes inside the parentheses.
2016-01-08 09:35:16 +03:00
```markdown
2013-08-13 01:57:23 +04:00
[Click me!](http://test.com/ "Link to Test.com")
```
Relative paths work too.
2016-01-08 09:35:16 +03:00
```markdown
2013-08-13 01:57:23 +04:00
[Go to music](/music/).
```
2016-01-08 09:35:16 +03:00
Markdown also supports reference style links.
2013-08-13 01:57:23 +04:00
2016-01-08 09:35:16 +03:00
<pre><code class="highlight">&#x5b;<span class="nv">Click this link</span>][<span class="ss">link1</span>] for more info about it!
&#x5b;<span class="nv">Also check out this link</span>][<span class="ss">foobar</span>] if you want to.
&#x5b;<span class="nv">link1</span>]: <span class="sx">http://test.com/</span> <span class="nn">"Cool!"</span>
&#x5b;<span class="nv">foobar</span>]: <span class="sx">http://foobar.biz/</span> <span class="nn">"Alright!"</span></code></pre>
The title can also be in single quotes or in parentheses, or omitted
entirely. The references can be anywhere in your document and the reference IDs
2015-11-02 05:38:55 +03:00
can be anything so long as they are unique.
2013-08-13 01:57:23 +04:00
There is also "implicit naming" which lets you use the link text as the id.
2013-08-13 01:57:23 +04:00
2016-01-08 09:35:16 +03:00
<pre><code class="highlight">&#x5b;<span class="nv">This</span>][] is a link.
&#x5b;<span class="nv">this</span>]: <span class="sx">http://thisisalink.com/</span></code></pre>
But it's not that commonly used.
2013-08-13 01:57:23 +04:00
## Images
Images are done the same way as links but with an exclamation point in front!
2016-01-08 09:35:16 +03:00
```markdown
![This is the alt-attribute for my image](http://imgur.com/myimage.jpg "An optional title")
```
2016-01-08 09:35:16 +03:00
And reference style works as expected.
2013-08-13 01:57:23 +04:00
2016-01-08 09:35:16 +03:00
<pre><code class="highlight">!&#x5b;<span class="nv">This is the alt-attribute.</span>][<span class="ss">myimage</span>]
2013-08-13 01:57:23 +04:00
2016-01-08 09:35:16 +03:00
&#x5b;<span class="nv">myimage</span>]: <span class="sx">relative/urls/cool/image.jpg</span> <span class="nn">"if you need a title, it's here"</span></code></pre>
## Miscellany
### Auto-links
2016-01-08 09:35:16 +03:00
```markdown
<http://testwebsite.com/> is equivalent to
[http://testwebsite.com/](http://testwebsite.com/)
```
2013-08-13 01:57:23 +04:00
### Auto-links for emails
2016-01-08 09:35:16 +03:00
```markdown
2013-08-13 01:57:23 +04:00
<foo@bar.com>
```
2013-08-13 01:57:23 +04:00
### Escaping characters
2016-01-08 09:35:16 +03:00
```markdown
I want to type *this text surrounded by asterisks* but I don't want it to be
in italics, so I do this: \*this text surrounded by asterisks\*.
```
2013-08-13 01:57:23 +04:00
### Keyboard keys
2015-10-01 07:42:19 +03:00
In GitHub Flavored Markdown, you can use a `<kbd>` tag to represent keyboard
keys.
2016-01-08 09:35:16 +03:00
```markdown
2015-10-01 07:42:19 +03:00
Your computer crashed? Try sending a
<kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd>
```
### Tables
2015-10-01 07:42:19 +03:00
2016-02-24 03:12:44 +03:00
Tables are only available in GitHub Flavored Markdown and are slightly
cumbersome, but if you really want it:
2016-01-08 09:35:16 +03:00
```markdown
2013-08-13 01:57:23 +04:00
| Col1 | Col2 | Col3 |
| :----------- | :------: | ------------: |
| Left-aligned | Centered | Right-aligned |
| blah | blah | blah |
```
or, for the same results
2013-08-13 01:57:23 +04:00
```markdown
2013-08-13 01:57:23 +04:00
Col 1 | Col2 | Col3
:-- | :-: | --:
Ugh this is so ugly | make it | stop
```
2016-01-08 09:35:16 +03:00
---
2013-08-13 01:57:23 +04:00
For more info, check out John Gruber's official post of syntax [here](http://daringfireball.net/projects/markdown/syntax) and Adam Pritchard's great cheatsheet [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).