Skip to content

Commit

Permalink
refactor: sort the plugins by plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Jan 12, 2023
1 parent 1adf40e commit eb68659
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions docs/users/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,26 @@ formatted = mdformat.text(unformatted, extensions={"tables"})
<th>Syntax Extensions</th>
<th>Description</th>
</tr>
<tr>
<td><a href="https://github.com/KyleKing/mdformat-admon">mdformat-admon</a></td>
<td><code>admonition</code></td>
<td>Adds support for <a href="https://python-markdown.github.io/extensions/admonition/">python-markdown</a> admonitions</td>
</tr>
<tr>
<td><a href="https://github.com/executablebooks/mdformat-deflist">mdformat-deflist</a></td>
<td><code>deflist</code></td>
<td>Adds support for <a href="https://pandoc.org/MANUAL.html#definition-lists">Pandoc-style</a> definition lists</td>
</tr>
<tr>
<td><a href="https://github.com/executablebooks/mdformat-footnote">mdformat-footnote</a></td>
<td><code>footnote</code></td>
<td>Adds support for <a href="https://pandoc.org/MANUAL.html#footnotes">Pandoc-style</a> footnotes</td>
</tr>
<tr>
<td><a href="https://github.com/butler54/mdformat-frontmatter">mdformat-frontmatter</a></td>
<td><code>frontmatter</code></td>
<td>Adds support for front matter, and formats YAML front matter</td>
</tr>
<tr>
<td><a href="https://github.com/hukkin/mdformat-gfm">mdformat-gfm</a></td>
<td><code>gfm</code></td>
Expand All @@ -118,24 +138,4 @@ formatted = mdformat.text(unformatted, extensions={"tables"})
<td><code>toc</code></td>
<td>Adds the capability to auto-generate a table of contents</td>
</tr>
<tr>
<td><a href="https://github.com/executablebooks/mdformat-footnote">mdformat-footnote</a></td>
<td><code>footnote</code></td>
<td>Adds support for <a href="https://pandoc.org/MANUAL.html#footnotes">Pandoc-style</a> footnotes</td>
</tr>
<tr>
<td><a href="https://github.com/butler54/mdformat-frontmatter">mdformat-frontmatter</a></td>
<td><code>frontmatter</code></td>
<td>Adds support for front matter, and formats YAML front matter</td>
</tr>
<tr>
<td><a href="https://github.com/executablebooks/mdformat-deflist">mdformat-deflist</a></td>
<td><code>deflist</code></td>
<td>Adds support for <a href="https://pandoc.org/MANUAL.html#definition-lists">Pandoc-style</a> definition lists</td>
</tr>
<tr>
<td><a href="https://github.com/KyleKing/mdformat-admon">mdformat-admon</a></td>
<td><code>admonition</code></td>
<td>Adds support for <a href="https://python-markdown.github.io/extensions/admonition/">python-markdown</a> admonitions</td>
</tr>
</table>

0 comments on commit eb68659

Please sign in to comment.