Chris Sewell
Chris Sewell
When creating sphinx extensions (or looking at existing ones), it is always a source of annoyance/confusion trying to remember what callback events are available, what their purpose is, and also...
Rather than having singular `nocolor` and `coloron` functions (left for back-compatibility, introduce a `colorize_output` context manager, for temporarily enabling / disabling colorized output streams, on entering, then return to the...
This PR add a new builder `references`, to build a single `references.json`, which provides a mapping for almost* all targets available to reference in the project, including: 1. Internal domain...
Add warnings (with source mapping) for unused footnote definitions and for footnote references that have no definition. Also account for parsing translation snippets containing footnote references. closes #930 closes #884...
- [x] https://github.com/markdown-it/markdown-it-container: could be used for https://github.com/executablebooks/MyST-Parser/issues/154 - [x] https://github.com/markdown-it/markdown-it-deflist: https://github.com/executablebooks/MyST-Parser/issues/153 - [ ] https://github.com/markdown-it/markdown-it-abbr: could be used for substitutions https://github.com/executablebooks/MyST-Parser/issues/172? - [ ] https://github.com/markdown-it/markdown-it-sub: e.g. `H~2~0` - [...
Heya, would you support having a `youtube-plist` directive? ```restructuredtext .. youtube-plist:: XYZ ``` The embedding HTML is essentially the same, but using the playlist shortcode like: `https://www.youtube.com/embed/videoseries?list=XYZ` If yes, then...
Currently, if you have an option that sets a callable default, it will simply show the `str` format of it, e.g. if you have: ```python def my_default(): return "hi" @click.command()...