hugo-theme-introduction/exampleSite/content/en/blog/startup-ipsum.md

40 lines
852 B
Markdown
Raw Normal View History

2017-11-13 21:01:53 +00:00
---
title: "Markdown Support"
2018-01-26 19:28:51 +00:00
date: 2017-11-06T12:04:06-05:00
tags: ["markdown", "features"]
series: ["quickstart"]
2017-11-13 21:01:53 +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
```
You can easily create tables using Markdown, with rows that support readability:
2017-11-13 21:01:53 +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
Unordered lists render with high readabiltiy as well!
2020-04-13 11:11:03 +00:00
- Unordered list
- First sub-item
- Second sub-item
2020-04-13 11:11:03 +00:00
- Second top level item
As do ordered lists:
2020-04-13 11:11:03 +00:00
1. Top level
1. First sub-level
1. Second sub-level
Have fun writing with Markdown!