Files
Nim/doc
Andrey Makarov 6505bd347d Markdown indented code blocks (#20473)
* 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
2022-10-05 14:03:10 -04:00
..
2022-10-05 14:03:10 -04:00
2022-08-12 14:33:43 -04:00
2022-09-19 18:24:40 -04:00
2022-10-05 14:03:10 -04:00
2022-06-04 07:03:03 +02:00
2022-08-21 16:56:12 -04:00
2022-10-05 14:03:10 -04:00

============================
Nim's documentation system
============================

This folder contains Nim's documentation. The documentation
is written in a format called *reStructuredText*, a markup language that reads
like ASCII and can be converted to HTML automatically!