Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Markdown indented code blocks (#20473) | Andrey Makarov | 2022-10-05 | 1 | -18/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | * Implement Markdown indented code blocks Additional indentation of 4 spaces makes a block an "indented code block" (monospaced text without syntax highlighting). Also `::` RST syntax for code blocks is disabled. So instead of ```rst see:: Some code ``` the code block should be written as ```markdown see: Some code ``` * Migrate RST literal blocks :: to Markdown's ones | ||||
* | Extract markdown/rst doc into separate file (#20404) | Andrey Makarov | 2022-09-22 | 1 | -0/+258 |
* Extract Markdown & Rst doc into separate file This documentation should be extracted into separate file as it's user's documentation, which can be used as a separate utility for compiling `.md/.rst` files. * Restructure: move markup info into markdown_rst.md +Markdown link migration |