pandoc/test/command/6993.md

34 lines
474 B
Markdown
Raw Normal View History

```
% pandoc -f mediawiki -t native
'''Should be bold '''
^D
[ Para
[ Strong
[ Str "Should" , Space , Str "be" , Space , Str "bold" ]
]
]
```
```
% pandoc -f mediawiki -t native
''' Should be bold'''
^D
[ Para
[ Strong
[ Str "Should" , Space , Str "be" , Space , Str "bold" ]
]
]
```
```
% pandoc -f mediawiki -t native
'' Should be emph ''
^D
[ Para
[ Emph
[ Str "Should" , Space , Str "be" , Space , Str "emph" ]
]
]
```