pandoc/test/command/3539.md
John MacFarlane 0bdcf415e4 Switch from pretty-simple to pretty-show for native output.
Update tests.

Reason:  it turns out that the native output generated by
pretty-simple isn't always readable by the native reader.
According to https://github.com/cdepillabout/pretty-simple/issues/99
it is not a design goal of the library that the rendered values
be readable using 'read'.  This makes it unsuitable for our
purposes.

pretty-show is a bit slower and it uses 4-space indents
(non-configurable), but it doesn't have this serious drawback.
2021-09-28 21:17:53 -07:00

253 lines
4.4 KiB
Markdown

# Commands of [glossaries package](ftp://ftp.tu-chemnitz.de/pub/tex/macros/latex/contrib/glossaries/glossaries-code.pdf)
```
% pandoc -f latex -t native
Many programming languages provide \glspl{API}. Each \gls{API} should provide a documentation.
^D
[ Para
[ Str "Many"
, Space
, Str "programming"
, Space
, Str "languages"
, Space
, Str "provide"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "plural+short" )
]
)
[ Str "APIs" ]
, Str "."
, Space
, Str "Each"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+short" )
]
)
[ Str "API" ]
, Space
, Str "should"
, Space
, Str "provide"
, Space
, Str "a"
, Space
, Str "documentation."
]
]
```
```
% pandoc -f latex -t native
\Glsdesc{API} XYZ ist not as performant as \glsdesc{API} ZXY.
^D
[ Para
[ Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+long" )
]
)
[ Str "API" ]
, Space
, Str "XYZ"
, Space
, Str "ist"
, Space
, Str "not"
, Space
, Str "as"
, Space
, Str "performant"
, Space
, Str "as"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+long" )
]
)
[ Str "API" ]
, Space
, Str "ZXY."
]
]
```
```
% pandoc -f latex -t native
\Acrlong{API} XYZ ist not as performant as \acrlong{API} ZXY.
^D
[ Para
[ Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+long" )
]
)
[ Str "API" ]
, Space
, Str "XYZ"
, Space
, Str "ist"
, Space
, Str "not"
, Space
, Str "as"
, Space
, Str "performant"
, Space
, Str "as"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+long" )
]
)
[ Str "API" ]
, Space
, Str "ZXY."
]
]
```
```
% pandoc -f latex -t native
\Acrfull{API} XYZ ist not as performant as \acrfull{API} ZXY.
^D
[ Para
[ Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+full" )
]
)
[ Str "API" ]
, Space
, Str "XYZ"
, Space
, Str "ist"
, Space
, Str "not"
, Space
, Str "as"
, Space
, Str "performant"
, Space
, Str "as"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+full" )
]
)
[ Str "API" ]
, Space
, Str "ZXY."
]
]
```
```
% pandoc -f latex -t native
\Acrshort{API} XYZ ist not as performant as \acrshort{API} ZXY.
^D
[ Para
[ Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+abbrv" )
]
)
[ Str "API" ]
, Space
, Str "XYZ"
, Space
, Str "ist"
, Space
, Str "not"
, Space
, Str "as"
, Space
, Str "performant"
, Space
, Str "as"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+abbrv" )
]
)
[ Str "API" ]
, Space
, Str "ZXY."
]
]
```
# Commands of [acronym package](ftp://ftp.mpi-sb.mpg.de/pub/tex/mirror/ftp.dante.de/pub/tex/macros/latex/contrib/acronym/acronym.pdf)
```
% pandoc -f latex -t native
Many programming languages provide \acp{API}. Each \ac{API} should provide a documentation.
^D
[ Para
[ Str "Many"
, Space
, Str "programming"
, Space
, Str "languages"
, Space
, Str "provide"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "plural+short" )
]
)
[ Str "APIs" ]
, Str "."
, Space
, Str "Each"
, Space
, Span
( ""
, []
, [ ( "acronym-label" , "API" )
, ( "acronym-form" , "singular+short" )
]
)
[ Str "API" ]
, Space
, Str "should"
, Space
, Str "provide"
, Space
, Str "a"
, Space
, Str "documentation."
]
]
```