public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: Leena Murgai <leenamurgai-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: pandoc-discuss <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: Help with a filter converting citations to sidenotes
Date: Fri, 20 Aug 2021 11:53:59 -0700 (PDT)	[thread overview]
Message-ID: <4c177bdf-f369-4e9b-bdc6-36e0e38cf496n@googlegroups.com> (raw)
In-Reply-To: <5866a845-e0bd-48b1-835d-189e40ef94f5n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>


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

Sorry, I wish I could write this message in an editable markdown window! 
I'll try again...

Hi Bastien,

Good questions, thx.

As I said I am converting from latex to html5, so no markdown to share.
I shared my filter above but here it is for convenience:
function Cite(el)
  marginnote = pandoc.Span(el.content)
  marginnote.classes[1] = 'marginnote'
  return {pandoc.Span(el.content), marginnote}
end

Here's the reference block html in the references section:
<div id="ref-AmazonSameDayPrime" class="csl-entry" role="doc-biblioentry">
<div class="csl-left-margin">[1] </div><div class="csl-right-inline">D. 
Ingold and S. Soper, <span>“Amazon doesn’t consider the race of its 
customers. Should it?”</span> <em>Bloomberg</em>, 2016.</div>
</div>

I want the following in my marginnote
<span><a href="#ref-AmazonSameDayPrime">[1]</a></span>
<span class="marginnote">
<span id="ref-AmazonSameDayPrime" class="csl-entry" role="doc-biblioentry">
<span class="csl-left-margin">[1] </span><span class="csl-right-inline">D. 
Ingold and S. Soper, <span>“Amazon doesn’t consider the race of its 
customers. Should it?”</span> <em>Bloomberg</em>, 2016.</span></span></span>
Note, I want to replace the divs with spans, but just getting the divs for 
now would be progress.

At the moment all I get in my marginnote is
<span><a href="#ref-AmazonSameDayPrime">[1]</a></span><span 
class="marginnote"><a href="#ref-AmazonSameDayPrime">[1]</a></span>

I think William's idea is promising so will try that approach. Happy for 
other suggestions if they come to mind.
On Friday, 20 August 2021 at 11:34:11 UTC-7 Leena Murgai wrote:

> Hi Bastien,
>
> All good questions, thx.
>
> As I said I am converting from latex to html5, so no markdown to share.
>
> Here's the reference block html in the references section:
> <div id="ref-AmazonSameDayPrime" class="csl-entry" role="doc-biblioentry">
> <div class="csl-left-margin">[1] </div><div class="csl-right-inline">D. 
> Ingold and S. Soper, <span>“Amazon doesn’t consider the race of its 
> customers. Should it?”</span> <em>Bloomberg</em>, 2016.</div>
> </div>
>
> I want the following in my marginnote
> <span><a href="#ref-AmazonSameDayPrime">[1]</a></span>
> <span class="marginnote">
> <span id="ref-AmazonSameDayPrime" class="csl-entry" role="doc-biblioentry">
> <span class="csl-left-margin">[1] </span><span class="csl-right-inline">D. 
> Ingold and S. Soper, <span>“Amazon doesn’t consider the race of its 
> customers. Should it?”</span> <em>Bloomberg</em>, 2016.</span></span></span>
>
> At the moment all I get in my marginnote is
>
> <span><a href="#ref-AmazonSameDayPrime">[1]</a></span><span 
> class="marginnote"><a href="#ref-AmazonSameDayPrime">[1]</a></span>
> On Friday, 20 August 2021 at 11:09:54 UTC-7 Bastien Dumont wrote:
>
>> Sorry, but is very difficult to help you efficiently from incomplete 
>> descriptions and screenshots. Could you please send the following? 
>>
>> * A very small Markdown chunk with only one citation; 
>> * The corresponding HTML code with the desired output; 
>> * The HTML code you actually get; 
>> * Your CSL stylesheet (if other than the default one); 
>> * The bibliography entry used in your example; 
>> * Your filter. 
>>
>> Without that, nobody can guess what is going on. 
>>
>> Le Friday 20 August 2021 à 10:41:07AM, Leena Murgai a écrit : 
>> > No problem William, 
>> > 
>> > in the example screenshots, the text I'm referring to is specifically 
>> > 
>> > D. Ingold and S. Soper, “Amazon doesn’t consider the race of its 
>> customers. 
>> > Should it?” Bloomberg, 2016. 
>> > 
>> > I assume it's a list of inlines in the AST, possibly a block, as I said 
>> I don't 
>> > know where it's stored. I assumed in citations, as did you, but I don't 
>> know 
>> > how to access it. Anyway, I want that text to be in my marginnote along 
>> side 
>> > the (lonely looking) [1]. 
>> > 
>> > Actually, I'm not interested in having the references at the end at 
>> all, I'd 
>> > rather just have the linked reference in marginnote. 
>> > On Friday, 20 August 2021 at 10:31:57 UTC-7 William Lupton wrote: 
>> > 
>> > Sorry, you've probably already answered this along the way, but I'm 
>> > confused about the "text" that you refer to. Perhaps you could attach a 
>> > JSON AST that includes a citation with all the desired information from 
>> a 
>> > run that DOESN'T use your filter? I'm unclear where in the AST to find 
>> the 
>> > information that you want (and is missing). I had assumed that it must 
>> be 
>> > in cite.citations but apparently not. 
>> > 
>> > On Fri, 20 Aug 2021 at 18:25, Leena Murgai <leena...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: 
>> > 
>> > So I've attached some screenshots in case it helps. You can see that 
>> > the marginnote contains only the [linked_item_number] of the citation, 
>> > the rest is missing. Here's the filter I used: 
>> > 
>> > function Cite(el) 
>> >   marginnote = pandoc.Span(el.content) 
>> >   marginnote.classes[1] = 'marginnote' 
>> >   return {pandoc.Span(el.content), marginnote} 
>> > end 
>> > 
>> > 
>> > 
>> > On Friday, 20 August 2021 at 10:06:30 UTC-7 Leena Murgai wrote: 
>> > 
>> > Hello again Bastien, 
>> > 
>> > I just tried your code, it does something similar to mine (but 
>> > clearly you code is nicer :). It's missing the text that makes up 
>> > the citation block in the bibligraphy. To be clear I want the whole 
>> > block (or inline?) that appears in the bibliography in my 
>> > marginnote. 
>> > 
>> > Cheers! 
>> > 
>> > On Friday, 20 August 2021 at 10:00:56 UTC-7 Leena Murgai wrote: 
>> > 
>> > Thanks  William. 
>> > 
>> > These are the filters I'm using: 
>> > 
>> > 1. tex2html/filters/date.lua            # Replace date with 
>> > today's date if it's empty above # 
>> > 2. tex2html/filters/texref.lua          # Cleanup pandoc and 
>> > pandoc-crossref conflicts # 
>> > 3. pandoc-crossref                      # [1]https://github.com 
>> > /lierdakil/pandoc-crossref # 
>> > 4. citeproc                             # If you need control 
>> > over when the citeproc processing # 
>> > 5. pandoc-sidenote                      # [2]https://github.com 
>> > /jez/pandoc-sidenote # 
>> > 6. tex2html/filters/margincitations.lua # put citations in 
>> > marginnotes # 
>> > 
>> > Thanks Pedro. 
>> > 
>> > I'm already using pandoc-sidenote :). What I actually want is a 
>> > marginnote. If I turn them into footnotes before running 
>> > pandoc-sidenote, I end up with a sidenote rather than a 
>> > marginnote which gets a superscript label. This isn't what I 
>> > want. I want to keep the [linked_item_number] (provided by 
>> > citeproc) and put that in the (unnumbered) marginnote (with the 
>> > rest of the ). RawInline let's me do that. I just can't access 
>> > the text. 
>> > On Friday, 20 August 2021 at 09:44:46 UTC-7 pedro....-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
>> > wrote: 
>> > 
>> > Jake Zimmerman’s pandoc-sidenote filter just takes every 
>> > footnote as a whole and converts it to a sidenote <span>. 
>> > Unless you want separate streams for regular footnotes and 
>> > citation sidenotes, it might be useful: [3]https:// 
>> > github.com/jez/pandoc-sidenote/blob/master/src/Text/Pandoc/ 
>> > SideNote.hs 
>> > 
>> > Em sexta-feira, 20 de agosto de 2021 às 17:37:55 UTC+1, 
>> > William Lupton escreveu: 
>> > 
>> > Not sure if this helps, but here's a simple example 
>> > showing a somewhat readable dump of the AST before and 
>> > after citeproc. I think only cite.content has changed. 
>> > I suspect that your problem is something else. 
>> > 
>> > 
>> > % cat cite.md  
>> > 
>> > @RFC1149 
>> > 
>> > 
>> > % LUA_PATH=../?.lua pandoc -L rep.lua --citeproc -L 
>> > rep.lua cite.md  
>> > 
>> > (#) meta {} 
>> > 
>> > (#) blocks { 
>> > 
>> >   [1] content: Para { 
>> > 
>> >     [1] Cite { 
>> > 
>> >       citations: { 
>> > 
>> >         [1] { 
>> > 
>> >           hash: 0 
>> > 
>> >           id: "RFC1149" 
>> > 
>> >           mode: "AuthorInText" 
>> > 
>> >           note_num: 1 
>> > 
>> >           prefix: {} 
>> > 
>> >           suffix: {} 
>> > 
>> >         } 
>> > 
>> >       } 
>> > 
>> >       content: { 
>> > 
>> >         [1] Str text: "@RFC1149" 
>> > 
>> >       } 
>> > 
>> >     } 
>> > 
>> >   } 
>> > 
>> > } 
>> > 
>> > [WARNING] Citeproc: citation RFC1149 not found 
>> > 
>> > (#) meta {} 
>> > 
>> > (#) blocks { 
>> > 
>> >   [1] content: Para { 
>> > 
>> >     [1] Cite { 
>> > 
>> >       citations: { 
>> > 
>> >         [1] { 
>> > 
>> >           hash: 0 
>> > 
>> >           id: "RFC1149" 
>> > 
>> >           mode: "AuthorInText" 
>> > 
>> >           note_num: 1 
>> > 
>> >           prefix: {} 
>> > 
>> >           suffix: {} 
>> > 
>> >         } 
>> > 
>> >       } 
>> > 
>> >       content: { 
>> > 
>> >         [1] Str text: "(" 
>> > 
>> >         [2] content: Strong { 
>> > 
>> >           [1] Str text: "RFC1149?" 
>> > 
>> >         } 
>> > 
>> >         [3] Str text: ")" 
>> > 
>> >       } 
>> > 
>> >     } 
>> > 
>> >   } 
>> > 
>> > } 
>> > 
>> > <p><span class="citation" data-cites="RFC1149"> 
>> > (<strong>RFC1149?</strong>)</span></p> 
>> > 
>> > 
>> > On Fri, 20 Aug 2021 at 17:14, Leena Murgai < 
>> > leena...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: 
>> > 
>> > I'm running it after citeproc since I need the 
>> > citation values. 
>> > 
>> > On Friday, 20 August 2021 at 09:12:06 UTC-7 Leena 
>> > Murgai wrote: 
>> > 
>> > Maybe the order I run the filters in matters? 
>> > 
>> > On Friday, 20 August 2021 at 09:07:24 UTC-7 
>> > Leena Murgai wrote: 
>> > 
>> > Yeah, I tried looking there, I couldn't 
>> > find what I wanted. I'm sure I'm missing 
>> > something. 
>> > 
>> > The question is how to access it? As in 
>> > what's the code? For example, each citation 
>> > ([4]https://pandoc.org/lua-filters.html# 
>> > type-citation) has the fields id, mode,  
>> > prefix, suffix, note_num, hash. Which one 
>> > contains the text I want? What's the code 
>> > to get the list of inlines I want 
>> > (corresponding to the text in the 
>> > citation)? 
>> > On Friday, 20 August 2021 at 08:59:52 UTC-7 
>> > William Lupton wrote: 
>> > 
>> > Do you mean the citations themselves? 
>> > These are in el.citations. See [5] 
>> > https://pandoc.org/lua-filters.html# 
>> > type-cite and [6]https://pandoc.org/ 
>> > lua-filters.html#type-citation. 
>> > 
>> > On Fri, 20 Aug 2021 at 16:36, Leena 
>> > Murgai <leena...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: 
>> > 
>> > So far I have the following, which puts 
>> > the [linked_item_number] in the passage 
>> > and in the marginnote but I'm missing 
>> > the rest of the 
>> > text_that_goes_in_the_bibliography. 
>> > 
>> > function Cite(el) 
>> >   return {  
>> >     pandoc.Span(el.content), 
>> >     pandoc.RawInline('html5', ' <span 
>> > class = "marginnote">'), 
>> >     pandoc.Span(el.content), 
>> >     pandoc.RawInline('html5', ' </span> 
>> > ') 
>> >     } 
>> > end 
>> > 
>> > On Thursday, 19 August 2021 at 20:32:11 
>> > UTC-7 Leena Murgai wrote: 
>> > 
>> > Hi there, 
>> > 
>> > I'm converting from LaTeX to HTML5. I'd 
>> > like to put my citations in 'sidenote's 
>> > rather than at the end of the doc. In 
>> > practice, this just means I want the 
>> > output html: to look like 
>> > 
>> > [linked_item_number] <span class= 
>> > marginnote> 
>> > text_that_goes_in_the_bibliography</ 
>> > span> 
>> > 
>> > How do I access the element that goes 
>> > into the citation, i.e. 
>> > text_that_goes_in_the_bibliography? 
>> > 
>> > Any advice appreciated. 
>> > 
>> > 
>> > 
>> > -- 
>> > 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 [7]https://groups.google.com/d/ 
>> > msgid/pandoc-discuss/ 
>> > eda3d7b4-befd-4f42-9455-8a37373d33a6n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
>> > 
>> > To view this discussion on the web visit [8]https:/ 
>> > /groups.google.com/d/msgid/pandoc-discuss/ 
>> > 3106cf1d-5ae3-411f-b92a-c14153d58e49n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
>> > 
>> > To view this discussion on the web visit [9]https://groups.google.com/d 
>> > /msgid/pandoc-discuss/ 
>> > eb59834b-d3e8-4dc4-9a66-0eb8c0f3e225n%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 [10]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
>> > To view this discussion on the web visit [11]
>> https://groups.google.com/d/msgid/ 
>> > pandoc-discuss/b548772c-269e-45c7-9ff6-9aec6014f024n%40googlegroups.com. 
>>
>> > 
>> > References: 
>> > 
>> > [1] https://github.com/lierdakil/pandoc-crossref 
>> > [2] https://github.com/jez/pandoc-sidenote 
>> > [3] 
>> https://github.com/jez/pandoc-sidenote/blob/master/src/Text/Pandoc/SideNote.hs 
>> > [4] https://pandoc.org/lua-filters.html#type-citation 
>> > [5] https://pandoc.org/lua-filters.html#type-cite 
>> > [6] https://pandoc.org/lua-filters.html#type-citation 
>> > [7] 
>> https://groups.google.com/d/msgid/pandoc-discuss/eda3d7b4-befd-4f42-9455-8a37373d33a6n%40googlegroups.com?utm_medium=email&utm_source=footer 
>> > [8] 
>> https://groups.google.com/d/msgid/pandoc-discuss/3106cf1d-5ae3-411f-b92a-c14153d58e49n%40googlegroups.com?utm_medium=email&utm_source=footer 
>> > [9] 
>> https://groups.google.com/d/msgid/pandoc-discuss/eb59834b-d3e8-4dc4-9a66-0eb8c0f3e225n%40googlegroups.com?utm_medium=email&utm_source=footer 
>> > [10] mailto:pandoc-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
>> > [11] 
>> https://groups.google.com/d/msgid/pandoc-discuss/b548772c-269e-45c7-9ff6-9aec6014f024n%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/4c177bdf-f369-4e9b-bdc6-36e0e38cf496n%40googlegroups.com.

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

  parent reply	other threads:[~2021-08-20 18:53 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-20  3:32 Leena Murgai
     [not found] ` <0f2d14e3-a86e-4fa1-b98c-52f540fe82b9n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 15:36   ` Leena Murgai
     [not found]     ` <eda3d7b4-befd-4f42-9455-8a37373d33a6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 15:59       ` William Lupton
     [not found]         ` <CAEe_xxgvt+VaEQHA52ARktgU5LtDc5CvSwGpGEmi7iB61r-KFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-08-20 16:07           ` Leena Murgai
     [not found]             ` <a50c77e1-4112-43ba-bfb1-fc716a474be8n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 16:12               ` Leena Murgai
     [not found]                 ` <93663960-bbfe-40a1-b3ba-25fefe58e7e0n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 16:14                   ` Leena Murgai
     [not found]                     ` <3106cf1d-5ae3-411f-b92a-c14153d58e49n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 16:37                       ` William Lupton
     [not found]                         ` <CAEe_xxjcvzan-To3UUApcszFJS1tAj2TC7NH2bTW38TykJstxg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-08-20 16:41                           ` Leena Murgai
     [not found]                             ` <7b758cdd-70d7-4c86-b08a-de891ff10ca2n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 16:44                               ` William Lupton
2021-08-20 16:59                               ` Bastien DUMONT
2021-08-20 16:44                           ` Pedro P. Palazzo
     [not found]                             ` <0fd903f3-e52d-44bd-a1b2-50bccfc9b66cn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 17:00                               ` Leena Murgai
     [not found]                                 ` <206b26c5-32b2-408d-80f6-cf851c9c8cb9n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 17:06                                   ` Leena Murgai
     [not found]                                     ` <7df79e6f-cb35-4ca5-8bc3-f089e3bc9199n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 17:25                                       ` Leena Murgai
     [not found]                                         ` <eb59834b-d3e8-4dc4-9a66-0eb8c0f3e225n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 17:31                                           ` William Lupton
     [not found]                                             ` <CAEe_xxjLevSn7YgLpg4LTdmjD_duxwm+Z3qXEGM+zSuwHUT3fg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-08-20 17:38                                               ` William Lupton
2021-08-20 17:41                                               ` Leena Murgai
     [not found]                                                 ` <b548772c-269e-45c7-9ff6-9aec6014f024n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 17:49                                                   ` William Lupton
     [not found]                                                     ` <CAEe_xxggM6-5=pTkMVxFFZSht75Sr=R_iQ8kXpq9nX+2kfKh8w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2021-08-20 18:06                                                       ` Leena Murgai
     [not found]                                                         ` <8d4c4320-4a85-4363-8789-8bebcd21d329n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 18:37                                                           ` William Lupton
2021-08-20 18:08                                                   ` Bastien DUMONT
2021-08-20 18:34                                                     ` Leena Murgai
     [not found]                                                       ` <5866a845-e0bd-48b1-835d-189e40ef94f5n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-20 18:53                                                         ` Leena Murgai [this message]
     [not found]                                                           ` <4c177bdf-f369-4e9b-bdc6-36e0e38cf496n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-08-21  8:33                                                             ` William Lupton
2021-08-21 17:00   ` John MacFarlane
     [not found]     ` <m2sfz2n36m.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2021-08-24  3:07       ` Leena Murgai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4c177bdf-f369-4e9b-bdc6-36e0e38cf496n@googlegroups.com \
    --to=leenamurgai-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).