Skip to content

Latest commit

 

History

History
executable file
·
110 lines (84 loc) · 988 Bytes

markdown.md

File metadata and controls

executable file
·
110 lines (84 loc) · 988 Bytes
title layout prism_languages updated weight
Markdown
2017/sheet
markdown
2017-09-20
-1

Reference

{:.-three-column}

Headers

# h1
### h3
Header 1
========
Header 2
--------

Emphasis

*italic*
_italic_
**bold**
__bold__
`code`

Links

[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>

Images

![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
[img]: http://foo.com/img.jpg

Code

    4 space indent
    makes a code block
```
code fences
```
```js
codeFences.withLanguage()
```

Blockquotes

> This is
> a blockquote
>
> > Nested
> > Blockquote

Horizontal line

----
****