Support for python markdown extensions' syntax
See original GitHub issueUsers of Python Markdown and extensions Leave your comments here, making it possible to add the support!
Original Post
pymdown extensions对markdown做了很多好玩的补充,不知道是否可以加入对这类语法的支持
简单的有MARK
这个用==mark==
来标记高亮字段
还有admonition
这里用!!! note
字段做一个block,转换成html还挺漂亮的,我用mkdocs文档管理也可以使用
不知道是否有类似的issue,简单搜索了一下没看到类似的,如果dupe,实在抱歉
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Extensions — Python-Markdown 3.4.1 documentation
Python Markdown offers a flexible extension mechanism, which makes it possible to change and/or extend the behavior of the parser without having to...
Read more >A few examples of extensions in Python-Markdown - alexwlchan
A few examples of extensions in Python-Markdown ; fn_extension = FootnoteExtension ; class LineNosFencedCodePreprocessor( ; class ...
Read more >Extended Syntax - Markdown Guide
The basic Markdown syntax allows you to create code blocks by indenting lines by four spaces or one tab. If you find that...
Read more >Markdown - Sphinx documentation
Markdown is a lightweight markup language with a simplistic plain text formatting syntax. It exists in many syntactically different flavors. To support ......
Read more >Working with Markdown in Python - Honeybadger.io
The python-markdown package also supports extensions that allow you to modify and/or extend the default behavior of the Markdown parser. For ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jasper-zanjani Considering developing a independent Markdown Extension
vscode提供了完整的markdown扩展体系,这些语法扩展可以单独做成插件,不需要全部集成到这个项目里。