Welcome to mirror list, hosted at ThFree Co, Russian Federation.

startup-ipsum.md « blog « en « content « exampleSite - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 680bcfcc05b94def2c708b00f02e55abf68f0ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
title: "Markdown Support"
date: 2017-11-06T12:04:06-05:00
tags: ["markdown", "features"]
series: ["quickstart"]
---

Introduction supports code blocks and syntax highlighting:

```sh
$ complicated techie code git bash ubuntu
>>> return value init foo
```

You can easily create tables using Markdown, with rows that support readability:

| 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!

- Unordered list
  - First sub-item
  - Second sub-item
- Second top level item

As do ordered lists:

1. Top level
    1. First sub-level
        1. Second sub-level

Have fun writing with Markdown!