2020-03-26 13:19:20 +03:00
|
|
|
|
---
|
|
|
|
|
template: overrides/main.html
|
|
|
|
|
---
|
|
|
|
|
|
2016-12-27 14:26:25 +03:00
|
|
|
|
# PyMdown Extensions
|
|
|
|
|
|
|
|
|
|
[PyMdown Extensions][1] is a collection of Markdown extensions that add some
|
2020-03-09 21:03:48 +03:00
|
|
|
|
great missing features to the standard Markdown library. A compatible version
|
|
|
|
|
is always included with the theme.
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2019-11-29 18:52:08 +03:00
|
|
|
|
[1]: https://facelessuser.github.io/pymdown-extensions/
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
## Configuration
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2017-01-07 22:07:41 +03:00
|
|
|
|
The following list of extensions that are part of the PyMdown Extensions
|
2020-03-09 21:03:48 +03:00
|
|
|
|
package are recommended to be used together with Material for MkDocs:
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
2017-01-09 23:41:30 +03:00
|
|
|
|
- pymdownx.arithmatex
|
2017-10-16 20:13:05 +03:00
|
|
|
|
- pymdownx.betterem:
|
|
|
|
|
smart_enable: all
|
2016-12-27 14:26:25 +03:00
|
|
|
|
- pymdownx.caret
|
|
|
|
|
- pymdownx.critic
|
2017-08-29 09:17:26 +03:00
|
|
|
|
- pymdownx.details
|
2017-01-10 00:25:15 +03:00
|
|
|
|
- pymdownx.emoji:
|
2020-04-12 20:58:22 +03:00
|
|
|
|
emoji_index: !!python/name:materialx.emoji.twemoji
|
|
|
|
|
emoji_generator: !!python/name:materialx.emoji.to_svg
|
2016-12-27 14:26:25 +03:00
|
|
|
|
- pymdownx.inlinehilite
|
|
|
|
|
- pymdownx.magiclink
|
|
|
|
|
- pymdownx.mark
|
|
|
|
|
- pymdownx.smartsymbols
|
|
|
|
|
- pymdownx.superfences
|
2017-10-16 20:13:05 +03:00
|
|
|
|
- pymdownx.tasklist:
|
|
|
|
|
custom_checkbox: true
|
2020-02-14 10:16:04 +03:00
|
|
|
|
- pymdownx.tabbed
|
2016-12-27 14:26:25 +03:00
|
|
|
|
- pymdownx.tilde
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-03 01:11:32 +03:00
|
|
|
|
## Usage
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2017-01-09 23:41:30 +03:00
|
|
|
|
### Arithmatex <small>MathJax</small>
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2017-05-11 04:58:47 +03:00
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"></script>
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
[Arithmatex][2] integrates Material for MkDocs with [MathJax][3] which parses
|
2016-12-27 14:26:25 +03:00
|
|
|
|
block-style and inline equations written in TeX markup and outputs them in
|
2017-08-29 14:46:07 +03:00
|
|
|
|
mathematical notation. See [this thread][4] for a short introduction and quick
|
2016-12-27 14:26:25 +03:00
|
|
|
|
reference on how to write equations in TeX syntax.
|
|
|
|
|
|
2017-01-09 23:41:30 +03:00
|
|
|
|
Besides activating the extension in the `mkdocs.yml`, the MathJax JavaScript
|
2020-03-09 21:03:48 +03:00
|
|
|
|
runtime needs to be included. This can be done with [additional JavaScript][5]:
|
2017-01-09 23:41:30 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2017-01-09 23:52:04 +03:00
|
|
|
|
extra_javascript:
|
2020-03-10 00:29:01 +03:00
|
|
|
|
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
|
2017-01-09 23:41:30 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If you want to override the default MathJax configuration, you can do this by
|
2020-03-09 21:03:48 +03:00
|
|
|
|
adding another JavaScript file **before** the MathJax runtime which contains
|
|
|
|
|
the MathJax configuration, e.g.:
|
2017-01-09 23:41:30 +03:00
|
|
|
|
|
|
|
|
|
``` js
|
2017-01-09 23:58:29 +03:00
|
|
|
|
window.MathJax = {
|
|
|
|
|
tex2jax: {
|
|
|
|
|
inlineMath: [ ["\\(","\\)"] ],
|
|
|
|
|
displayMath: [ ["\\[","\\]"] ]
|
|
|
|
|
},
|
|
|
|
|
TeX: {
|
|
|
|
|
TagSide: "right",
|
|
|
|
|
TagIndent: ".8em",
|
|
|
|
|
MultLineWidth: "85%",
|
|
|
|
|
equationNumbers: {
|
|
|
|
|
autoNumber: "AMS",
|
|
|
|
|
},
|
|
|
|
|
unicode: {
|
|
|
|
|
fonts: "STIXGeneral,'Arial Unicode MS'"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
displayAlign: "left",
|
|
|
|
|
showProcessingMessages: false,
|
|
|
|
|
messageStyle: "none"
|
|
|
|
|
};
|
2017-01-09 23:41:30 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
Then, add the following lines to `mkdocs.yml`:
|
2017-01-09 23:52:04 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra_javascript:
|
2020-03-10 00:29:01 +03:00
|
|
|
|
- javascripts/extra.js
|
|
|
|
|
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
|
2017-01-09 23:52:04 +03:00
|
|
|
|
```
|
|
|
|
|
|
2017-08-29 14:46:07 +03:00
|
|
|
|
[2]: https://facelessuser.github.io/pymdown-extensions/extensions/arithmatex/
|
|
|
|
|
[3]: https://www.mathjax.org/
|
2019-11-29 18:52:08 +03:00
|
|
|
|
[4]: https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference
|
2017-08-29 14:46:07 +03:00
|
|
|
|
[5]: ../customization.md#additional-javascript
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2017-01-09 23:41:30 +03:00
|
|
|
|
#### Blocks
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
|
|
|
|
Blocks are enclosed in `:::tex $$...$$` which are placed on separate lines.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
``` tex
|
|
|
|
|
$$
|
|
|
|
|
\frac{n!}{k!(n-k)!} = \binom{n}{k}
|
|
|
|
|
$$
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Result:
|
|
|
|
|
|
|
|
|
|
$$
|
|
|
|
|
\frac{n!}{k!(n-k)!} = \binom{n}{k}
|
|
|
|
|
$$
|
|
|
|
|
|
2017-01-09 23:41:30 +03:00
|
|
|
|
#### Inline
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
Inline equations must be enclosed in `:::tex $...$`:
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
``` tex
|
|
|
|
|
Lorem ipsum dolor sit amet: $p(x|y) = \frac{p(y|x)p(x)}{p(y)}$
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Result:
|
|
|
|
|
|
|
|
|
|
Lorem ipsum dolor sit amet: $p(x|y) = \frac{p(y|x)p(x)}{p(y)}$
|
|
|
|
|
|
2017-08-29 14:46:07 +03:00
|
|
|
|
### BetterEm
|
|
|
|
|
|
|
|
|
|
[BetterEm][6] improves the handling of emphasis markup (**bold** and *italic*)
|
|
|
|
|
within Markdown by providing a more sophisticated parser for better detecting
|
|
|
|
|
start and end tokens. Read the documentation for [usage notes][7].
|
|
|
|
|
|
|
|
|
|
[6]: https://facelessuser.github.io/pymdown-extensions/extensions/betterem/
|
|
|
|
|
[7]: https://facelessuser.github.io/pymdown-extensions/usage_notes/
|
|
|
|
|
|
|
|
|
|
### Caret
|
|
|
|
|
|
|
|
|
|
[Caret][8] makes it possible to highlight ^^inserted text^^. The portion of
|
|
|
|
|
text that should be marked as added must be enclosed in two carets `^^...^^`.
|
|
|
|
|
|
|
|
|
|
[8]: https://facelessuser.github.io/pymdown-extensions/extensions/caret/
|
|
|
|
|
|
|
|
|
|
### Critic
|
|
|
|
|
|
|
|
|
|
[Critic][9] implements [Critic Markup][10], a Markdown extension that enables
|
|
|
|
|
the tracking of changes (additions, deletions and comments) on documents.
|
|
|
|
|
During compilation of the Markdown document, changes can be rendered (default),
|
|
|
|
|
accepted or rejected.
|
|
|
|
|
|
|
|
|
|
Text can be {--deleted--} and replacement text {++added++}. This can also be
|
|
|
|
|
combined into {~~one~>a single~~} operation. {==Highlighting==} is also
|
|
|
|
|
possible {>>and comments can be added inline<<}.
|
|
|
|
|
|
|
|
|
|
{==
|
|
|
|
|
|
|
|
|
|
Formatting can also be applied to blocks, by putting the opening and closing
|
|
|
|
|
tags on separate lines and adding new lines between the tags and the content.
|
|
|
|
|
|
|
|
|
|
==}
|
|
|
|
|
|
|
|
|
|
[9]: https://facelessuser.github.io/pymdown-extensions/extensions/critic/
|
|
|
|
|
[10]: http://criticmarkup.com/
|
|
|
|
|
|
|
|
|
|
### Details
|
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
[Details][11] adds [collapsible Admonition blocks][12] which can contain
|
2017-08-29 14:46:07 +03:00
|
|
|
|
arbitrary content using the HTML5 `details` and `summary` tags. Additionally,
|
2017-08-29 17:17:16 +03:00
|
|
|
|
all Admonition qualifiers can be used, e.g. `note`, `question`, `warning` etc.:
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
??? question "How many Prolog programmers does it take to change a lightbulb?"
|
|
|
|
|
|
|
|
|
|
Yes.
|
|
|
|
|
|
|
|
|
|
[11]: https://facelessuser.github.io/pymdown-extensions/extensions/details/
|
2020-03-09 21:03:48 +03:00
|
|
|
|
[12]: ../admonition/#collapsible-blocks
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
### Emoji :tada:
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
[Emoji][13] adds the ability to insert, well, emojis! :smile:
|
2019-11-16 22:47:02 +03:00
|
|
|
|
|
|
|
|
|
By default, [Emoji][13] uses JoyPixles' emoji under the former name EmojiOne.
|
|
|
|
|
Recent versions of the extension lock support to an older version (2.2.7) due
|
|
|
|
|
to JoyPixels' newer, less permissible licenses included in later releases. This
|
|
|
|
|
restricts support to Unicode 9. To get the latest support for the current
|
|
|
|
|
Unicode version, you can use Twemoji instead which has a much more permissable
|
|
|
|
|
license. Simply override the default emoji index being used:
|
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
``` yaml
|
2019-11-16 22:47:02 +03:00
|
|
|
|
markdown_extensions:
|
|
|
|
|
- pymdownx.emoji:
|
|
|
|
|
emoji_index: !!python/name:pymdownx.emoji.twemoji
|
|
|
|
|
emoji_generator: !!python/name:pymdownx.emoji.to_svg
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 21:03:48 +03:00
|
|
|
|
To view all the available short names and emoji available, see
|
|
|
|
|
[Emoji's documentation][18] on your chosen index which includes links to the
|
|
|
|
|
files containing the short names and emoji associated with each supported
|
|
|
|
|
index.
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
!!! warning "Legal disclaimer"
|
|
|
|
|
|
2019-11-16 22:47:02 +03:00
|
|
|
|
Material has no affiliation with [JoyPixles][15] or [Twemoji][14], both
|
2020-03-09 21:03:48 +03:00
|
|
|
|
of which are licensed under [CC BY 4.0][16]. When including images or CSS
|
|
|
|
|
from either provider, please read their licenses to ensure proper
|
|
|
|
|
attribution: [EmojiOne][17] or [Twemoji][14].
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
### Icons :hatching_chick:
|
|
|
|
|
|
|
|
|
|
In addition, you can embed the Material Design icons, Fontawesome icons and
|
|
|
|
|
GitHub's Octicons directly from Markdown by using [Material for MkDocs's custom
|
|
|
|
|
emoji index][19]. It extends the Twemoji index with new short names that access
|
|
|
|
|
any of the included icons. To use the custom index, you need to use
|
|
|
|
|
`materialx.emoji` instead of `pymdownx.emoji`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- pymdownx.emoji:
|
2020-04-14 10:50:35 +03:00
|
|
|
|
emoji_index: !!python/name:materialx.emoji.twemoji
|
2020-04-12 20:58:22 +03:00
|
|
|
|
emoji_generator: !!python/name:materialx.emoji.to_svg
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
``` markdown
|
|
|
|
|
* :material-account-circle: – we can use Material Design icons
|
|
|
|
|
* :fontawesome-regular-laugh-wink: – we can also use FontAwesome icons
|
|
|
|
|
* :octicons-octoface: – that's not all, we can also use GitHub's Octicons
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Result:
|
|
|
|
|
|
|
|
|
|
* :material-account-circle: – we can use [Material Design icons][20]
|
|
|
|
|
* :fontawesome-regular-laugh-wink: – we can also use [FontAwesome icons][21]
|
|
|
|
|
* :octicons-octoface: – that's not all, we can also use [GitHub's Octicons][22]
|
|
|
|
|
|
2017-08-29 14:46:07 +03:00
|
|
|
|
[13]: https://facelessuser.github.io/pymdown-extensions/extensions/emoji/
|
2019-11-16 22:47:02 +03:00
|
|
|
|
[14]: https://twemoji.twitter.com/
|
2019-11-06 19:50:52 +03:00
|
|
|
|
[15]: https://www.joypixels.com/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
[16]: https://creativecommons.org/licenses/by/4.0/legalcode
|
2019-11-16 22:47:02 +03:00
|
|
|
|
[17]: https://github.com/joypixels/emojione#emojione-version-2
|
|
|
|
|
[18]: https://facelessuser.github.io/pymdown-extensions/extensions/emoji/#default-emoji-indexes
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[19]: https://github.com/facelessuser/mkdocs-material-extensions
|
|
|
|
|
[20]: https://material.io/resources/icons/
|
|
|
|
|
[21]: https://fontawesome.com/icons?d=gallery&m=free
|
|
|
|
|
[22]: https://octicons.github.com/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
2017-01-09 23:41:30 +03:00
|
|
|
|
### InlineHilite
|
2016-12-27 14:26:25 +03:00
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[InlineHilite][23] adds support for inline code highlighting. It's useful for
|
2016-12-27 14:26:25 +03:00
|
|
|
|
short snippets included within body copy, e.g. `#!js var test = 0;` and can be
|
2020-03-09 21:03:48 +03:00
|
|
|
|
activated by prefixing inline code with a shebang and language identifier,
|
2016-12-27 14:26:25 +03:00
|
|
|
|
e.g. `#!js`.
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[23]: https://facelessuser.github.io/pymdown-extensions/extensions/inlinehilite/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
### MagicLink
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[MagicLink][24] detects links in Markdown and auto-generates the necessary
|
2017-08-29 14:46:07 +03:00
|
|
|
|
markup, so no special syntax is required. It auto-links `http[s]://` and
|
|
|
|
|
`ftp://` links, as well as references to email addresses.
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[24]: https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
### Mark
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[Mark][25] adds the ability to ==highlight text== like it was marked with a
|
2017-08-29 14:46:07 +03:00
|
|
|
|
==text marker==. The portion of text that should be highlighted must be
|
|
|
|
|
enclosed in two equal signs `==...==`.
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[25]: https://facelessuser.github.io/pymdown-extensions/extensions/mark/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
### SmartSymbols
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[SmartSymbols][26] converts markup for special characters into their
|
2017-08-29 14:46:07 +03:00
|
|
|
|
corresponding symbols, e.g. arrows (<--, -->, <-->), trademark and copyright
|
|
|
|
|
symbols ((c), (tm), (r)) and fractions (1/2, 1/4, ...).
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[26]: https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
### SuperFences
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[SuperFences][27] provides the ability to nest code blocks under blockquotes,
|
|
|
|
|
lists and other block elements, which the [Fenced Code Blocks][28] extension
|
2017-08-29 14:46:07 +03:00
|
|
|
|
from the standard Markdown library doesn't parse correctly.
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
SuperFences does also allow [grouping code blocks with tabs][29].
|
2018-06-10 19:06:45 +03:00
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[27]: https://facelessuser.github.io/pymdown-extensions/extensions/superfences/
|
|
|
|
|
[28]: https://python-markdown.github.io/extensions/fenced_code_blocks/
|
|
|
|
|
[29]: codehilite.md#grouping-code-blocks
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
2020-02-14 10:16:04 +03:00
|
|
|
|
### Tabbed
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[Tabbed][30] adds support for creating tabbed groups of Markdown content.
|
2020-02-14 10:16:04 +03:00
|
|
|
|
|
2020-03-15 15:55:06 +03:00
|
|
|
|
Example:
|
|
|
|
|
|
2020-02-14 10:16:04 +03:00
|
|
|
|
``` markdown
|
|
|
|
|
=== "Fruit List"
|
2020-03-09 21:03:48 +03:00
|
|
|
|
- :apple: Apple
|
|
|
|
|
- :banana: Banana
|
|
|
|
|
- :kiwi: Kiwi
|
2020-02-14 10:16:04 +03:00
|
|
|
|
|
|
|
|
|
=== "Fruit Table"
|
2020-03-09 21:03:48 +03:00
|
|
|
|
Fruit | Color
|
|
|
|
|
--------------- | -----
|
|
|
|
|
:apple: Apple | Red
|
|
|
|
|
:banana: Banana | Yellow
|
|
|
|
|
:kiwi: Kiwi | Green
|
2020-02-14 10:16:04 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-15 15:55:06 +03:00
|
|
|
|
Result:
|
|
|
|
|
|
2020-02-14 10:16:04 +03:00
|
|
|
|
=== "Fruit List"
|
2020-03-09 21:03:48 +03:00
|
|
|
|
- :apple: Apple
|
|
|
|
|
- :banana: Banana
|
|
|
|
|
- :kiwi: Kiwi
|
2020-02-14 10:16:04 +03:00
|
|
|
|
|
|
|
|
|
=== "Fruit Table"
|
2020-03-09 21:03:48 +03:00
|
|
|
|
Fruit | Color
|
|
|
|
|
--------------- | -----
|
|
|
|
|
:apple: Apple | Red
|
|
|
|
|
:banana: Banana | Yellow
|
|
|
|
|
:kiwi: Kiwi | Green
|
2020-02-14 10:16:04 +03:00
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[30]: https://facelessuser.github.io/pymdown-extensions/extensions/superfences/
|
2020-02-14 10:16:04 +03:00
|
|
|
|
|
2017-08-29 14:46:07 +03:00
|
|
|
|
### Tasklist
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[Tasklist][31] adds support for styled checkbox lists. This is useful for
|
2017-08-29 14:46:07 +03:00
|
|
|
|
keeping track of tasks and showing what has been done and has yet to be done.
|
|
|
|
|
Checkbox lists are like regular lists, but prefixed with `[ ]` for empty or
|
|
|
|
|
`[x]` for filled checkboxes.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
``` markdown
|
|
|
|
|
* [x] Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
|
|
|
* [x] Nulla lobortis egestas semper
|
|
|
|
|
* [x] Curabitur elit nibh, euismod et ullamcorper at, iaculis feugiat est
|
|
|
|
|
* [ ] Vestibulum convallis sit amet nisi a tincidunt
|
|
|
|
|
* [x] In hac habitasse platea dictumst
|
|
|
|
|
* [x] In scelerisque nibh non dolor mollis congue sed et metus
|
|
|
|
|
* [x] Sed egestas felis quis elit dapibus, ac aliquet turpis mattis
|
|
|
|
|
* [ ] Praesent sed risus massa
|
|
|
|
|
* [ ] Aenean pretium efficitur erat, donec pharetra, ligula non scelerisque
|
|
|
|
|
* [ ] Nulla vel eros venenatis, imperdiet enim id, faucibus nisi
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Result:
|
|
|
|
|
|
|
|
|
|
* [x] Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
|
|
|
* [x] Nulla lobortis egestas semper
|
|
|
|
|
* [x] Curabitur elit nibh, euismod et ullamcorper at, iaculis feugiat est
|
|
|
|
|
* [ ] Vestibulum convallis sit amet nisi a tincidunt
|
|
|
|
|
* [x] In hac habitasse platea dictumst
|
|
|
|
|
* [x] In scelerisque nibh non dolor mollis congue sed et metus
|
|
|
|
|
* [x] Sed egestas felis quis elit dapibus, ac aliquet turpis mattis
|
|
|
|
|
* [ ] Praesent sed risus massa
|
|
|
|
|
* [ ] Aenean pretium efficitur erat, donec pharetra, ligula non scelerisque
|
|
|
|
|
* [ ] Nulla vel eros venenatis, imperdiet enim id, faucibus nisi
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[31]: https://facelessuser.github.io/pymdown-extensions/extensions/tasklist/
|
2017-08-29 14:46:07 +03:00
|
|
|
|
|
|
|
|
|
### Tilde
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[Tilde][32] provides an easy way to ~~strike through~~ cross out text.
|
2017-08-29 14:46:07 +03:00
|
|
|
|
The portion of text that should be erased must be enclosed in two tildes
|
|
|
|
|
`~~...~~` and the extension will take care of the rest.
|
|
|
|
|
|
2020-04-12 20:58:22 +03:00
|
|
|
|
[32]: https://facelessuser.github.io/pymdown-extensions/extensions/tilde/
|