More smart escaping tests.
This commit is contained in:
parent
7404c83fb3
commit
396d304167
1 changed files with 20 additions and 0 deletions
|
@ -22,4 +22,24 @@ When we render literal quotes without smart, we need to escape:
|
|||
\"hi\"\...dog\'s breath\-\--cat 5\--6
|
||||
```
|
||||
|
||||
```
|
||||
% pandoc -f markdown+smart -t rst-smart
|
||||
"hi"...dog's breath---cat 5--6
|
||||
^D
|
||||
“hi”…dog’s breath—cat 5–6
|
||||
```
|
||||
|
||||
```
|
||||
% pandoc -f markdown+smart -t rst+smart
|
||||
"hi"...dog's breath---cat 5--6
|
||||
^D
|
||||
"hi"...dog's breath---cat 5--6
|
||||
```
|
||||
|
||||
```
|
||||
% pandoc -f markdown-smart -t rst+smart
|
||||
"hi"...dog's breath---cat 5--6
|
||||
^D
|
||||
\"hi\"\...dog\'s breath\-\--cat 5\--6
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue