I have a `test.md` that looks like this:

```
# test

# test {#test}
```

I ran `pandoc test.md --to latex --from markdown` and expected to get the following:

```
\hypertarget{test}{%
\section{test}\label{test-1}}

\hypertarget{test}{%
\section{test}\label{test}}
```

Instead, I got:

```
[WARNING] Duplicate identifier 'test' at line 6 column 1
\hypertarget{test}{%
\section{test}\label{test}}

\hypertarget{test}{%
\section{test}\label{test}}
```

Turning `auto_identifiers` off "fixes" this by not giving the first instance a label. But shouldn't `auto_identifiers` be able to automatically label headings while taking into account existing IDs?

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/099f0289-7ff2-4f84-b983-8af49f257915n%40googlegroups.com.