14 lines
1022 B
Markdown
14 lines
1022 B
Markdown
Markdown is a plain text formatting system [originally developed by John Gruber](https://daringfireball.net/projects/markdown/). It has since been standardized into [CommonMark](https://commonmark.org/), which is what Silver Bullet uses (with some extensions).
|
|
|
|
Specifically, Silver Bullet supports the following extensions to common mark:
|
|
|
|
* [[Frontmatter]]
|
|
* Double-bracketed wiki links: `[[link to page]]`, optionally with aliases `[[link to page|alias]]`.
|
|
* Hashtags, e.g. `#mytag`.
|
|
* Command link syntax: `{[Stats: Show]}` rendered into a clickable button {[Stats: Show]}.
|
|
* [Tables](https://www.markdownguide.org/extended-syntax/#tables)
|
|
* [Fenced code blocks](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks)
|
|
* [Task lists](https://www.markdownguide.org/extended-syntax/#task-lists)
|
|
* [Highlight](https://www.markdownguide.org/extended-syntax/#highlight)
|
|
* [Automatic URL linking](https://www.markdownguide.org/extended-syntax/#automatic-url-linking)
|
|
* Custom markdown extensions provided by plugs |