2017-11-13 21:01:53 +00:00
|
|
|
---
|
2022-02-22 14:06:29 +00:00
|
|
|
title: "Markdown Support"
|
2018-01-26 19:28:51 +00:00
|
|
|
date: 2017-11-06T12:04:06-05:00
|
2022-02-22 14:06:29 +00:00
|
|
|
tags: ["markdown", "features"]
|
|
|
|
series: ["quickstart"]
|
2017-11-13 21:01:53 +00:00
|
|
|
---
|
|
|
|
|
2022-02-22 14:06:29 +00:00
|
|
|
Introduction supports code blocks and syntax highlighting:
|
2017-11-13 21:01:53 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
$ complicated techie code git bash ubuntu
|
|
|
|
>>> return value init foo
|
|
|
|
```
|
|
|
|
|
2022-02-22 14:06:29 +00:00
|
|
|
You can easily create tables using Markdown, with rows that support readability:
|
2017-11-13 21:01:53 +00:00
|
|
|
|
2019-12-29 03:07:04 +00:00
|
|
|
| this | is | a | table | !
|
|
|
|
|------|---:|-----|-------|---
|
|
|
|
| this | is | the | 1st | row
|
|
|
|
| this | is | the | 2nd | row
|
|
|
|
| this | is | the | 3rd | row
|
|
|
|
| edgy | jo | ke | lands | here
|
|
|
|
| this | is | the | 5th | row
|
|
|
|
| this | is | the | 6th | row
|
|
|
|
|
2022-02-22 14:06:29 +00:00
|
|
|
Unordered lists render with high readabiltiy as well!
|
2020-04-13 11:11:03 +00:00
|
|
|
|
|
|
|
- Unordered list
|
2022-02-22 14:06:29 +00:00
|
|
|
- First sub-item
|
|
|
|
- Second sub-item
|
2020-04-13 11:11:03 +00:00
|
|
|
- Second top level item
|
|
|
|
|
2022-02-22 14:06:29 +00:00
|
|
|
As do ordered lists:
|
2020-04-13 11:11:03 +00:00
|
|
|
|
|
|
|
1. Top level
|
|
|
|
1. First sub-level
|
2022-02-22 14:06:29 +00:00
|
|
|
1. Second sub-level
|
|
|
|
|
|
|
|
Have fun writing with Markdown!
|