diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2017-02-20 20:52:00 +0100 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2017-02-20 20:52:00 +0100 |
| commit | ce8226f1a7d64da56117d2f7f351e06225a84614 (patch) | |
| tree | 9f2d716df0230f5f17372f19b8718dcf86039fd9 /test/command | |
| parent | e86e44b98e592d5a5e4c6b43d9b57b195f091ed9 (diff) | |
| parent | 12d96508c62189b4ff8c8b797d34cc9ef177f5ee (diff) | |
| download | pandoc-ce8226f1a7d64da56117d2f7f351e06225a84614.tar.gz | |
Merge commit '9e52ac6bb02afd7b4ed5dad61021a1fa33051203' as 'data/templates'
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/3422.md | 9 | ||||
| -rw-r--r-- | test/command/3432a.md | 19 | ||||
| -rw-r--r-- | test/command/512.md | 41 | ||||
| -rw-r--r-- | test/command/latex-tabular-column-specs.md | 24 | ||||
| -rw-r--r-- | test/command/parse-raw.md | 27 | ||||
| -rw-r--r-- | test/command/smart.md | 45 |
6 files changed, 0 insertions, 165 deletions
diff --git a/test/command/3422.md b/test/command/3422.md deleted file mode 100644 index a010320e9..000000000 --- a/test/command/3422.md +++ /dev/null @@ -1,9 +0,0 @@ -See #3422 - -``` -% pandoc -t latex --listings -`int main(int argc, const char *argv[]);`{.c} -^D -\lstinline[language=C]!int main(int argc, const char *argv[]);! -``` - diff --git a/test/command/3432a.md b/test/command/3432a.md deleted file mode 100644 index 5f25bce60..000000000 --- a/test/command/3432a.md +++ /dev/null @@ -1,19 +0,0 @@ -``` -% pandoc -f rst -* - a - - b -* - c - - d -^D -<ul> -<li><ul> -<li>a</li> -<li>b</li> -</ul></li> -<li><ul> -<li>c</li> -<li>d</li> -</ul></li> -</ul> -``` - diff --git a/test/command/512.md b/test/command/512.md deleted file mode 100644 index a13c434f6..000000000 --- a/test/command/512.md +++ /dev/null @@ -1,41 +0,0 @@ -``` -% pandoc -f rst -`click here`__ or `click here`__ - -.. _link1: http://www.example.com/ -.. _link2: http://johnmacfarlane.net/pandoc/ - -__ link1_ -__ link2_ -^D -<p><a href="http://www.example.com/">click here</a> or <a href="http://johnmacfarlane.net/pandoc/">click here</a></p> -``` - -Multiple indirection: - -``` -% pandoc -f rst -`click here`__ - -.. _link1: link2_ -.. _link2: http://johnmacfarlane.net/pandoc/ - -__ link1_ -^D -<p><a href="http://johnmacfarlane.net/pandoc/">click here</a></p> -``` - -Loop detection: - -``` -% pandoc -f rst -`click here`__ - -.. _link1: link2_ -.. _link2: link1_ - -__ link1_ -^D -<p><a href="">click here</a></p> -``` - diff --git a/test/command/latex-tabular-column-specs.md b/test/command/latex-tabular-column-specs.md deleted file mode 100644 index ed44a9980..000000000 --- a/test/command/latex-tabular-column-specs.md +++ /dev/null @@ -1,24 +0,0 @@ -See https://groups.google.com/forum/#!topic/pandoc-discuss/_VXtqihCyDU. - -``` -% pandoc -f latex -t native -\begin{tabular}{>{$}l<{$}>{$}l<{$} >{$}l<{$}} -\toprule -& f1 & f2 \\ -\midrule -e & 0.5 & 4 \\ -f & 0.5 & 5,5 \\ -\bottomrule -\end{tabular} -^D -[Table [] [AlignLeft,AlignLeft,AlignLeft] [0.0,0.0,0.0] - [[Plain [Math InlineMath ""]] - ,[Plain [Math InlineMath "f1"]] - ,[Plain [Math InlineMath "f2"]]] - [[[Plain [Math InlineMath "e"]] - ,[Plain [Math InlineMath "0.5"]] - ,[Plain [Math InlineMath "4"]]] - ,[[Plain [Math InlineMath "f"]] - ,[Plain [Math InlineMath "0.5"]] - ,[Plain [Math InlineMath "5,5"]]]]] -``` diff --git a/test/command/parse-raw.md b/test/command/parse-raw.md deleted file mode 100644 index f4e493c69..000000000 --- a/test/command/parse-raw.md +++ /dev/null @@ -1,27 +0,0 @@ -``` -% pandoc -f latex+raw_tex -t markdown -\emph{Hi \foo{there}} -^D -*Hi \foo{there}* -``` - -``` -% pandoc -f latex -t markdown -\emph{Hi \foo{there}} -^D -*Hi* -``` - -``` -% pandoc -f html+raw_html -t markdown -<em>Hi <blink>there</blink></em> -^D -*Hi <blink>there</blink>* -``` - -``` -% pandoc -f html -t markdown -<em>Hi <blink>there</blink></em> -^D -*Hi there* -``` diff --git a/test/command/smart.md b/test/command/smart.md deleted file mode 100644 index e64d67de2..000000000 --- a/test/command/smart.md +++ /dev/null @@ -1,45 +0,0 @@ -``` -% pandoc -f markdown+smart -t markdown-smart -"hi"...dog's breath---cat 5--6 -^D -“hi”…dog’s breath—cat 5–6 -``` - -``` -% pandoc -f markdown+smart -t markdown+smart -"hi"...dog's breath---cat 5--6 -^D -"hi"...dog's breath---cat 5--6 -``` - -When we render literal quotes without smart, we need to escape: - -``` -% pandoc -f markdown-smart \ - -t markdown+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 -``` - -``` -% pandoc -f markdown-smart -t rst+smart -"hi"...dog's breath---cat 5--6 -^D -\"hi\"\...dog\'s breath\-\--cat 5\--6 -``` - |
