mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 14:15:40 +00:00
MediaWiki, for example, will parse a code block containing formatting as a sequence of Code elements separated by LineBreaks. For this we now use a texinfo example block. Closes #11312.
22 lines
136 B
Markdown
22 lines
136 B
Markdown
```
|
|
% pandoc -f mediawiki -t texinfo
|
|
foofoo
|
|
|
|
bar
|
|
baz
|
|
|
|
foofoo
|
|
^D
|
|
@node Top
|
|
@top Top
|
|
|
|
foofoo
|
|
|
|
@example
|
|
bar
|
|
baz
|
|
@end example
|
|
|
|
foofoo
|
|
```
|