mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
Previously we used an odd mix of 3- and 4-space indentation. Now we use 3-space indentation, except for ordered lists, where indentation must depend on the width of the list marker. Closes #4563.
16 lines
128 B
Markdown
16 lines
128 B
Markdown
````
|
|
% pandoc -t rst
|
|
```python
|
|
print("hello")
|
|
```
|
|
> block quote
|
|
^D
|
|
.. code:: python
|
|
|
|
print("hello")
|
|
|
|
..
|
|
|
|
block quote
|
|
````
|