"Fossies" - the Fresh Open Source Software Archive 
Member "pandoc-2.18/test/command/2549.md" (4 Apr 2022, 698 Bytes) of package /linux/www/pandoc-2.18.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) GitHub Flavored Markdown source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ```
2 % pandoc -f latex -t native
3 \hypertarget{foo}{%
4 \section{A section}\label{foo}
5 }
6 ^D
7 [ Header
8 1 ( "foo" , [] , [] ) [ Str "A" , Space , Str "section" ]
9 ]
10 ```
11
12 ```
13 % pandoc -f latex -t native
14 \hypertarget{bar}{%
15 \section{A section}\label{foo}
16 }
17 ^D
18 [ Div
19 ( "bar" , [] , [] )
20 [ Header
21 1 ( "foo" , [] , [] ) [ Str "A" , Space , Str "section" ]
22 ]
23 ]
24 ```
25
26 ```
27 % pandoc -f latex -t native
28 Bar \hypertarget{foo}{Foo}
29 ^D
30 [ Para
31 [ Str "Bar"
32 , Space
33 , Span ( "foo" , [] , [] ) [ Str "Foo" ]
34 ]
35 ]
36 ```
37
38 ```
39 % pandoc -f latex -t native
40 \hypertarget{foo}{%
41 \begin{verbatim}
42 bar
43 \end{verbatim}
44 }
45 ^D
46 [ Div
47 ( "foo" , [] , [] ) [ CodeBlock ( "" , [] , [] ) "bar" ]
48 ]
49 ```
50