You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support for mkdocs material superfences syntax
Add a block info parsing function that detects and parse when it uses the pymdown superfences brace format.
To use this parser, use `--markdown-docs-syntax=superfences`
In .mdx files, you can use MDX comments to provide additional options for code blocks. These comments should be placed immediately before the code block and take the following form:
141
155
@@ -175,4 +189,4 @@ Or for fun, you can use this plugin to include testing of the validity of snippe
175
189
* Line numbers are "wrong" for docstring-inlined snippets (since we don't know where in the file the docstring starts)
176
190
* Line numbers are "wrong" for continuation blocks even in pure markdown files (can be worked out with some refactoring)
177
191
* There are probably more appropriate ways to use pytest internal APIs to get more features "for free" - current state of the code is a bit "patch it til' it works".
178
-
* Assertions are not rewritten w/ pretty data structure inspection like they are with regular pytest tests by default
192
+
* Assertions are not rewritten w/ pretty data structure inspection like they are with regular pytest tests by default
0 commit comments