mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-06 07:35:45 +00:00
to avoid including a blocquote in the indented content of a preceding block. Closes #3675.
16 lines
130 B
Markdown
16 lines
130 B
Markdown
````
|
|
% pandoc -t rst
|
|
```python
|
|
print("hello")
|
|
```
|
|
> block quote
|
|
^D
|
|
.. code:: python
|
|
|
|
print("hello")
|
|
|
|
..
|
|
|
|
block quote
|
|
````
|