mdit-py-plugins icon indicating copy to clipboard operation
mdit-py-plugins copied to clipboard

Collection of core plugins for markdown-it-py

Results 33 mdit-py-plugins issues
Sort by recently updated
recently updated
newest added

### Describe the bug **context** myst_role misparses inlines that begin with a role occurences and end with `\` because its checks for leading `\` unintentionally wraps around the end of...

bug

Mathjax recognizes TeX math equations by delimiters(https://docs.mathjax.org/en/latest/input/tex/delimiters.html), without delimiters it is nearly impossible for Mathjax to render the equations in webpage.

### Context I would suggest two improvements to the tasklists plugin: - [ ] Don't add `disabled="disabled"` to the checkboxes. This makes it so you can't click them. But if...

enhancement

### Describe the bug **context** I used markdown_it to convert Markdown to html, but the converted formula lost its delimiters, which caused my mathjax cannot render the formula, Code for...

bug

Closes https://github.com/executablebooks/mdit-py-plugins/issues/37

This is ported from https://github.com/Moxio/markdown-it-fancy-lists https://github.com/Moxio/markdown-it-fancy-lists/commit/f47a6c2b63d9ce4b82882a59302b24abc0328032 Fixes #34

### Describe the bug **context** my code from markdown_it import MarkdownIt from mdit_py_plugins.front_matter import front_matter_plugin from mdit_py_plugins.footnote import footnote_plugin from mdit_py_plugins.texmath import texmath_plugin md = ( MarkdownIt() .use(front_matter_plugin) .use(footnote_plugin) .use(texmath_plugin)...

bug

### Context The usage example ```python from markdown_it import MarkdownIt from mdit_py_plugins import plugin1, plugin2 md = MarkdownIt().use(plugin1, keyword=value).use(plugin2, keyword=value) html_string = md.render("some *Markdown*") ``` is, I feel, a little...

enhancement

### Describe the problem/need and solution **Context** In mdit-py-plugins < 0.3 it backslashes were not allowed in MyST targets. Now they are. **Problem / Idea** This is now a valid...

enhancement