Markdown Snippets
References
Section titled “References”This reference to Hobbit in the paragraph:
In a hole in the ground there lived a hobbit. Not a nasty, dirty, wet hole, filled with the endsof worms and an oozy smell, nor yet a dry, bare, sandy hole with nothing in it to sit down on or toeat: it was a [hobbit-hole][1], and that means comfort.
[1]: <https://en.wikipedia.org/wiki/Hobbit#Lifestyle> "Hobbit lifestyles"
<!-- will be rendered in html as: -->
<a href="https://en.wikipedia.org/wiki/Hobbit#Lifestyle" title="Hobbit lifestyles">hobbit-hole</a>
From: Example source: Markdown Guide - Reference style links
Tables
Section titled “Tables”| Column1 | Column2 | Column3 | column 4 | col5 | col6 | col 7 || ------- | ------- | ------- | -------- | ---- | ---- | ----- || Item1 | Item1 | Item1 | ite | ite | ite | ite |
| column | column2 | column 3 || ------ | ------- | -------- || 1 | | || | 2 | || | | || | 2 | 2 || 5 | 4 | 3 |
<!-- With VS Code Markdown Table extension: https://marketplace.visualstudio.com/items?itemName=TakumiI.markdowntable - quickly create a new table with:- Use command palette "Markdown:table navigate to next cell"- Sort table using `format with` and choose markdown table sort- To Sort markdown list (one level), copy it to Excel and sort column and copy by to markdown.-->
| column | column2 | column 3 || --
<!-- Adding Images -->
Linting
Section titled “Linting”# Fix issues that can be fixed## Note some like line lengths cannot be auto fixed at this timemarkdownlint-cli2 --fix '**/*.md'
# Format markdown with prettier and wrap proseprettier --parser markdown --prose-wrap always file.md# <always|never|preserve>