Study Guide: Markdown syntax for displaying tables, footnotes, links and lists

This post shows markdown syntax for tables, footnotes, links, lists…

Footnotes

When I wrote the following pages, or rather the bulk 
of them, I lived alone, in the woods, a mile from any 
neighbor, in a house which I had built myself, on the 
shore of Walden Pond, in Concord, Massachusetts, and 
earned my living by the labor of my hands only.
<cite>[^1]</cite>I lived there two years and two 
months. At present I am a sojourner in civilized 
life again.<cite>[^2]</cite> Footnotes are 
automatically placed at the bottom of 
the page.<cite>[^3]</cite>

[^1]: Thoreau wrote the first draft of Walden at the
pond, but continued to work on the book for several
more years. Irish laborers for the Fitchburg Railroad
lived in shanties that were closer than a mile, but
Thoreau did not considered them neighbors, because
they moved soon after after the completion of the 
railroad.

[^2]: E.B.White "borrowed" this from Thoreau, writing
"At present I am a sojourner in the city again," in
his "A Report in Spring" essay.

[^3]: These footnotes, which were entered in the above 
text are automatically moved to the bottom of the page.

When I wrote the following pages, or rather the bulk of them, I lived alone, in the woods, a mile from any neighbor, in a house which I had built myself, on the shore of Walden Pond, in Concord, Massachusetts, and earned my living by the labor of my hands only.1I lived there two years and two months. At present I am a sojourner in civilized life again.2 Footnotes are automatically placed at the bottom of the page.3

Table

|No   |YEAR |PORULATION|URBAN|RURAL| URBAN/TOTAL|
| --- |---  | ---      | --- | --- | ---        |
|1 	|2005	|130756	|56212	|74544	|43.0 |
|2 	|2006	|131448	|58288	|73160	|44.3 |
|3 	|2007	|132129	|60633	|71496	|45.9 |
|4 	|2008	|132802	|62403	|70399	|47.0 |
|5 	|2009	|133450	|64512	|68938	|48.3 |
|6 	|2010	|134091	|66978	|67113	|49.9 |
|7 	|2011	|134916	|69927	|64989	|51.8 |
|8 	|2012	|135922	|72175	|63747	|53.1 |
No YEAR PORULATION URBAN RURAL URBAN/TOTAL
1 2005 130756 56212 74544 43.0
2 2006 131448 58288 73160 44.3
3 2007 132129 60633 71496 45.9
4 2008 132802 62403 70399 47.0
5 2009 133450 64512 68938 48.3
6 2010 134091 66978 67113 49.9
7 2011 134916 69927 64989 51.8
8 2012 135922 72175 63747 53.1
Link: [Hugo](https://gohugo.io)

Website: &lt;https://gohugo.io>

Email: &lt;example.com>

Link: Hugo

Website: https://gohugo.io

Email: 13050082@qq.com

Lists

Ordered Lists

1. First item
2. Second item
3. Third item
4. Fourth item 
  1. First item
  2. Second item
  3. Third item
  4. Fourth item

Unordered Lists

- First item
- Second item
- Third item
- Fourth item 
- First item
- Second item
- Third item
- Fourth item 

Nested Lists

1. First item
    - First item
    - Second item
    - Third item
2. Second item
    - First item
    - Second item
3. Third item
    - First item
    - Second item
  1. First item
    • First item
    • Second item
    • Third item
  2. Second item
    • First item
    • Second item
  3. Third item
    • First item
    • Second item

  1. Thoreau wrote the first draft of Walden at the pond, but continued to work on the book for several more years. Irish laborers for the Fitchburg Railroad lived in shanties that were closer than a mile, but Thoreau did not considered them neighbors, because they moved soon after after the completion of the railroad. ↩︎

  2. E.B.White “borrowed” this from Thoreau, writing “At present I am a sojourner in the city again,” in his “A Report in Spring” essay. ↩︎

  3. These footnotes, which were entered in the above text are automatically moved to the bottom of the page. ↩︎


Related Content

Source: //study/markdown/markdown-syntax-2-links/