mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
25 lines
308 B
Markdown
25 lines
308 B
Markdown
```
|
|
% pandoc -f html -t mediawiki
|
|
<dl>
|
|
<dt>Case 1: Both subsets are non-empty</dt>
|
|
<dd>
|
|
In this case, …
|
|
</dd>
|
|
</dl>
|
|
^D
|
|
; Case 1<nowiki>:</nowiki> Both subsets are non-empty
|
|
: In this case, …
|
|
```
|
|
|
|
```
|
|
% pandoc -f mediawiki -t html
|
|
; term : definition
|
|
^D
|
|
<dl>
|
|
<dt>term</dt>
|
|
<dd>
|
|
definition
|
|
</dd>
|
|
</dl>
|
|
```
|