public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* `auto_identifiers` causing duplicate identifiers
@ 2021-05-24  6:57 Shir
       [not found] ` <099f0289-7ff2-4f84-b983-8af49f257915n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Shir @ 2021-05-24  6:57 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 1065 bytes --]

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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.

[-- Attachment #1.2: Type: text/html, Size: 1623 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: `auto_identifiers` causing duplicate identifiers
       [not found] ` <099f0289-7ff2-4f84-b983-8af49f257915n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2021-05-24 18:32   ` John MacFarlane
       [not found]     ` <m21r9woudj.fsf-jF64zX8BO08an7k8zZ43ob9bIa4KchGshsV+eolpW18@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: John MacFarlane @ 2021-05-24 18:32 UTC (permalink / raw)
  To: Shir, pandoc-discuss


The current design expects that, either you're going to
manually specify identifiers when you need them, or you'll
use auto_identifiers.  The mix can be problematic.

The problem is that auto_identifiers is enabled by default,
and using explicit identifiers doesn't turn it off.

Why don't you submit this as a bug report on GitHub?

Shir <shirdekel94-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:

> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: `auto_identifiers` causing duplicate identifiers
       [not found]     ` <m21r9woudj.fsf-jF64zX8BO08an7k8zZ43ob9bIa4KchGshsV+eolpW18@public.gmane.org>
@ 2021-05-25  1:00       ` Shir
  0 siblings, 0 replies; 3+ messages in thread
From: Shir @ 2021-05-25  1:00 UTC (permalink / raw)
  To: pandoc-discuss


[-- Attachment #1.1: Type: text/plain, Size: 2178 bytes --]

Thanks, did so here: https://github.com/jgm/pandoc/issues/7312.

On Tuesday, 25 May 2021 at 04:32:42 UTC+10 John MacFarlane wrote:

>
> The current design expects that, either you're going to
> manually specify identifiers when you need them, or you'll
> use auto_identifiers. The mix can be problematic.
>
> The problem is that auto_identifiers is enabled by default,
> and using explicit identifiers doesn't turn it off.
>
> Why don't you submit this as a bug report on GitHub?
>
> Shir <shird...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
>
> > 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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
> .
>

-- 
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/d14c158a-b9d9-4990-bde1-467acbe767een%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 3452 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-05-25  1:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-24  6:57 `auto_identifiers` causing duplicate identifiers Shir
     [not found] ` <099f0289-7ff2-4f84-b983-8af49f257915n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-05-24 18:32   ` John MacFarlane
     [not found]     ` <m21r9woudj.fsf-jF64zX8BO08an7k8zZ43ob9bIa4KchGshsV+eolpW18@public.gmane.org>
2021-05-25  1:00       ` Shir

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).