31 lines
435 B
Markdown
31 lines
435 B
Markdown
|
```
|
||
|
% pandoc -f latex-auto_identifiers -t html
|
||
|
\chapter{chapone}
|
||
|
\part{partone}
|
||
|
\chapter{chaptwo}
|
||
|
\section{secone}
|
||
|
^D
|
||
|
<h2>chapone</h2>
|
||
|
<h1>partone</h1>
|
||
|
<h2>chaptwo</h2>
|
||
|
<h3>secone</h3>
|
||
|
```
|
||
|
|
||
|
```
|
||
|
% pandoc -f latex-auto_identifiers -t html
|
||
|
\chapter{chapone}
|
||
|
\chapter{chaptwo}
|
||
|
\section{secone}
|
||
|
^D
|
||
|
<h1>chapone</h1>
|
||
|
<h1>chaptwo</h1>
|
||
|
<h2>secone</h2>
|
||
|
```
|
||
|
|
||
|
```
|
||
|
% pandoc -f latex-auto_identifiers -t html
|
||
|
\section{secone}
|
||
|
^D
|
||
|
<h1>secone</h1>
|
||
|
```
|