pandoc/test/command/1905.md

31 lines
435 B
Markdown
Raw Normal View History

```
% 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>
```