public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Internal link to a RawBlock created via filter
@ 2023-07-15 20:24 Alberto Simoes
       [not found] ` <c52b4685-004a-4e98-a620-974b6395c6acn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Alberto Simoes @ 2023-07-15 20:24 UTC (permalink / raw)
  To: pandoc-discuss


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

Hello

I am using a filter based on the tikz example in the python pandocfilters 
documentation.
I am generating one id="foo" and a \label{foo} in the html and latex 
output, respectively, for an internal link target.

Nevertheless, when I use a link to that block, with [Look here](#foo)  the 
link is generated to the first page, and not to the raw block that has the 
label defined.

I suppose that Pandoc is creating an internal index of references before 
generating the latex/html code (??) and is not aware that my RawBlock has a 
link target.

What is the proper way to achieve a working link?
Thank you
Alberto

-- 
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/c52b4685-004a-4e98-a620-974b6395c6acn%40googlegroups.com.

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

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

* Re: Internal link to a RawBlock created via filter
       [not found] ` <c52b4685-004a-4e98-a620-974b6395c6acn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2023-07-15 20:39   ` Alberto Simões
       [not found]     ` <CAAkRyrtVDA8otm8WQNFyp1f2MgAhWu3vXZJvF0-Mwfx43g=8FQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2023-07-18  0:05   ` John MacFarlane
  1 sibling, 1 reply; 5+ messages in thread
From: Alberto Simões @ 2023-07-15 20:39 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 1550 bytes --]

On Sat, Jul 15, 2023 at 9:24 PM Alberto Simoes <hashashin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:

> Hello
>
> I am using a filter based on the tikz example in the python pandocfilters
> documentation.
> I am generating one id="foo" and a \label{foo} in the html and latex
> output, respectively, for an internal link target.
>
> Nevertheless, when I use a link to that block, with [Look here](#foo)  the
> link is generated to the first page, and not to the raw block that has the
> label defined.
>
> I suppose that Pandoc is creating an internal index of references before
> generating the latex/html code (??) and is not aware that my RawBlock has a
> link target.
>
>
The generated LaTeX looks good to me...

--------
\begin{figure}[h]
\centering
...
\caption{Vibração simples}
\label{fig1}
\end{figure}

A corda \emph{A} deslocada para o ponto \emph{B} regressa à base
\emph{A}. A vibração simples póde pois representar-se em face da
\protect\hyperlink{fig1}{fig.~1} pela fórmula \(AB + BA\).
----------

What am I missing?

Thank you


-- 
Alberto Simões

-- 
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/CAAkRyrtVDA8otm8WQNFyp1f2MgAhWu3vXZJvF0-Mwfx43g%3D8FQ%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 2514 bytes --]

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

* Re: Internal link to a RawBlock created via filter
       [not found]     ` <CAAkRyrtVDA8otm8WQNFyp1f2MgAhWu3vXZJvF0-Mwfx43g=8FQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2023-07-15 21:13       ` Alberto Simoes
  0 siblings, 0 replies; 5+ messages in thread
From: Alberto Simoes @ 2023-07-15 21:13 UTC (permalink / raw)
  To: pandoc-discuss


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



On Saturday, July 15, 2023 at 9:40:08 PM UTC+1 Alberto Simões wrote:

On Sat, Jul 15, 2023 at 9:24 PM Alberto Simoes  wrote:

Hello

I am using a filter based on the tikz example in the python pandocfilters 
documentation.
I am generating one id="foo" and a \label{foo} in the html and latex 
output, respectively, for an internal link target.

Nevertheless, when I use a link to that block, with [Look here](#foo)  the 
link is generated to the first page, and not to the raw block that has the 
label defined.

I suppose that Pandoc is creating an internal index of references before 
generating the latex/html code (??) and is not aware that my RawBlock has a 
link target.


The generated LaTeX looks good to me...

--------
\begin{figure}[h]
\centering
...
\caption{Vibração simples}
\label{fig1}
\end{figure}

A corda \emph{A} deslocada para o ponto \emph{B} regressa à base
\emph{A}. A vibração simples póde pois representar-se em face da
\protect\hyperlink{fig1}{fig.~1} pela fórmula \(AB + BA\).
----------


hyperlink only links to hyperref hypertarget blocks.
So, I needed to write

\begin{figure}[h]
\centering
\hypertarget{fig1}{...}
\caption{Vibração simples}
\label{fig1}
\end{figure}
 
in fact, the label might be suppressed after the caption, but I decided to 
keep it there, as it might get handy.

Thanks and sorry for asking and answering :-)
Alberto

-- 
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/b6640415-3c29-4530-b520-10e4029ac344n%40googlegroups.com.

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

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

* Re: Internal link to a RawBlock created via filter
       [not found] ` <c52b4685-004a-4e98-a620-974b6395c6acn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  2023-07-15 20:39   ` Alberto Simões
@ 2023-07-18  0:05   ` John MacFarlane
       [not found]     ` <50EAD892-479F-427D-9CCE-A6CE4B1E4A9C-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  1 sibling, 1 reply; 5+ messages in thread
From: John MacFarlane @ 2023-07-18  0:05 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 2321 bytes --]

Your link [look here](#foo) should be generating an HTML anchor <a> with href "#foo".
Is this what you see?

Second question: do you see the id="foo" in the document you produced?  If you're including this in a raw HTML block, it should be passed directly through.

Another question is whether you perhaps have a heading named Foo -- that could cause pandoc to autogenerate an id "foo". Pandoc wouldn't know about the id you set in your raw HTML block, otherwise it would take steps to avoid duplicate ids.


> On Jul 15, 2023, at 1:24 PM, Alberto Simoes <hashashin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> 
> Hello
> 
> I am using a filter based on the tikz example in the python pandocfilters documentation.
> I am generating one id="foo" and a \label{foo} in the html and latex output, respectively, for an internal link target.
> 
> Nevertheless, when I use a link to that block, with [Look here](#foo)  the link is generated to the first page, and not to the raw block that has the label defined.
> 
> I suppose that Pandoc is creating an internal index of references before generating the latex/html code (??) and is not aware that my RawBlock has a link target.
> 
> What is the proper way to achieve a working link?
> Thank you
> Alberto
> 
> -- 
> 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 <mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>.
> To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/c52b4685-004a-4e98-a620-974b6395c6acn%40googlegroups.com <https://groups.google.com/d/msgid/pandoc-discuss/c52b4685-004a-4e98-a620-974b6395c6acn%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
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/50EAD892-479F-427D-9CCE-A6CE4B1E4A9C%40gmail.com.

[-- Attachment #2: Type: text/html, Size: 3175 bytes --]

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

* Re: Internal link to a RawBlock created via filter
       [not found]     ` <50EAD892-479F-427D-9CCE-A6CE4B1E4A9C-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2023-07-18  7:57       ` Alberto Simões
  0 siblings, 0 replies; 5+ messages in thread
From: Alberto Simões @ 2023-07-18  7:57 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 3236 bytes --]

Hello, John

The issue was with LaTeX and the hyperref package. That was fixed, thank
you.
Alberto

On Tue, Jul 18, 2023 at 1:05 AM John MacFarlane <fiddlosopher@gmail.com>
wrote:

> Your link [look here](#foo) should be generating an HTML anchor <a> with
> href "#foo".
> Is this what you see?
>
> Second question: do you see the id="foo" in the document you produced?  If
> you're including this in a raw HTML block, it should be passed directly
> through.
>
> Another question is whether you perhaps have a heading named Foo -- that
> could cause pandoc to autogenerate an id "foo". Pandoc wouldn't know about
> the id you set in your raw HTML block, otherwise it would take steps to
> avoid duplicate ids.
>
>
> On Jul 15, 2023, at 1:24 PM, Alberto Simoes <hashashin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
> Hello
>
> I am using a filter based on the tikz example in the python pandocfilters
> documentation.
> I am generating one id="foo" and a \label{foo} in the html and latex
> output, respectively, for an internal link target.
>
> Nevertheless, when I use a link to that block, with [Look here](#foo)  the
> link is generated to the first page, and not to the raw block that has the
> label defined.
>
> I suppose that Pandoc is creating an internal index of references before
> generating the latex/html code (??) and is not aware that my RawBlock has a
> link target.
>
> What is the proper way to achieve a working link?
> Thank you
> Alberto
>
> --
> 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/c52b4685-004a-4e98-a620-974b6395c6acn%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/c52b4685-004a-4e98-a620-974b6395c6acn%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "pandoc-discuss" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/pandoc-discuss/P9wQCp25k8k/unsubscribe.
> To unsubscribe from this group and all its topics, 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/50EAD892-479F-427D-9CCE-A6CE4B1E4A9C%40gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/50EAD892-479F-427D-9CCE-A6CE4B1E4A9C%40gmail.com?utm_medium=email&utm_source=footer>
> .
>


-- 
Alberto Simões

-- 
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/CAAkRyrtncj6H5U746Z35HZbJXPcmtOW8h_nU_EsuNWc93DMmXg%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 4780 bytes --]

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

end of thread, other threads:[~2023-07-18  7:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-15 20:24 Internal link to a RawBlock created via filter Alberto Simoes
     [not found] ` <c52b4685-004a-4e98-a620-974b6395c6acn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2023-07-15 20:39   ` Alberto Simões
     [not found]     ` <CAAkRyrtVDA8otm8WQNFyp1f2MgAhWu3vXZJvF0-Mwfx43g=8FQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-07-15 21:13       ` Alberto Simoes
2023-07-18  0:05   ` John MacFarlane
     [not found]     ` <50EAD892-479F-427D-9CCE-A6CE4B1E4A9C-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2023-07-18  7:57       ` Alberto Simões

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).