Basic Syntax
- Heading
- Heading with custom id
- My Great Heading
- Bold
- Italic
- Bold and nested italic
- All bold and italic
- Strikethrough
- Emoji
- Highlight
- Subscript
- Superscript
- Blockquote
- Ordered List
- Unordered List
- Nested lists
- Code
- Fenced Code Block
- Horizontal Rule
- Link
- Image
- Table
- Footnote
- Task List
- Escaping characters
Heading
# H1
H1
## H2
H2
### H3
H3
Heading with custom id
## My Great Heading {#custom-id}
My Great Heading
Bold
**bold text**
bold text
Italic
*italicized text*
italicized text
Bold and nested italic
**This text is *extremely* important**
This text is extremely important
All bold and italic
***All this text is important***
All this text is important
Strikethrough
~~The world is flat.~~
The world is flat.
Emoji
That is so funny! :joy:
That is so funny! 😂
Might need som additional software to work. mdbook-emojicodes works for mdBook.
Here's a list of emojis.
Highlight
I need to highlight these ==very important words==.
note
mdBook doesn't support the highlight syntax. Use the html syntax instead.
I need to highlight these <mark>very important words</mark>
I need to highlight these very important words
Subscript
H~2~O
note
mdBook doesn't support the subscript syntax. Use the html syntax instead.
H<sub>2</sub>O
H2O
Superscript
X^2^
note
mdBook doesn't support the superscript syntax. Use the html syntax instead.
X<sup>2</sup>
X2
Blockquote
> blockquote
blockquote
> blockquote
>
> > nested blockquote
>
blockquote
nested blockquote
Ordered List
1. First item
1. Second item
1. Third item
- First item
- Second item
- Third item
Unordered List
- First item
- Second item
- Third item
- First item
- Second item
- Third item
Nested lists
1. First list item
- First nested list item
- Second nested list item
- First list item
- First nested list item
- Second nested list item
- First nested list item
Code
`code`
code
Fenced Code Block
Three backticks makes a fence. Using a tab or 4 blank spaces instead of backticks also works.
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
Language specification is optional.
```ruby
require 'redcarpet'
= Redcarpet.new("Hello World!")
puts .to_
```
require 'redcarpet'
= Redcarpet.new("Hello World!")
puts .to_
Horizontal Rule
---
Link
[Guide](https://www.guide.org)
[an example](http://example.com/ "Title")
Try [Ubuntu][] for your server.
[Ubuntu]: https://ubuntu.com/download/server "Ubuntu Server LTS"
Try Ubuntu for your server.
Image

![Logga][1]
[1]: https://commonmark.org/help/images/favicon.png "Creative Commons licensed"
Linked image
[](https://commonmark.org)
Table
| Item | In Stock | Price |
| :---------------- | :------: | ----: |
| Python Hat | True | 3.99 |
| SQL Hat | Truer | 23.99 |
| Codecademy Tee | False | 19.99 |
| Codecademy Hoodie | Falser | 42.9999 |
Item | In Stock | Price |
---|---|---|
Python Hat | True | 3.99 |
SQL Hat | Truer | 23.99 |
Codecademy Tee | False | 19.99 |
Codecademy Hoodie | Falser | 42.9999 |
Footnote
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
Here's a sentence with a footnote. 1
This is the footnote.
Task List
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
- Write the press release
- Update the website
- Contact the media
Escaping characters
You can use a backslash \ to escape the following characters:
Character | Name |
---|---|
\ | backslash |
` | backtick |
* | asterisk |
_ | underscore |
{ } | curly braces |
[ ] | brackets |
< > | angle brackets |
( ) | parentheses |
# | pound sign |
+ | plus sign |
- | minus sign (hyphen) |
. | dot |
! | exclamation mark |
| | pipe |
Escape backticks with two backticks.
``Use `code` in your Markdown file.``
Use four backticks to enclose code blocks.
````
```ruby
require 'rubygems'
require 'asciidoctor'
```
````