public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: Bastien DUMONT <bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: Re: Can citations be sorted by call-number but be labeled with a corresponding increasing integer?
Date: Mon, 24 Jan 2022 18:10:14 +0000	[thread overview]
Message-ID: <Ye7rhuIxSSods5EK@localhost> (raw)
In-Reply-To: <CAEe_xxgGSPFFcQr0e9mc6A1ZY=WpS=-z8bbEySZaWCPXrfmzrQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

Sorry, I don't understand your question, but please try it out, and if the result doesn't match your needs, show the result you get with your example file, the expected result, and your whole CSL file.

Le Monday 24 January 2022 à 05:17:55PM, William Lupton a écrit :
> I want to sort by call number but I want to label the citations 1, 2 etc. where
> the 1, 2 etc. correspond to the sorted call numbers.
> 
> If I do what you suggest, won't my bibliography items be labelled with
> non-monotonically-increasing numbers?
> 
> On Mon, 24 Jan 2022 at 14:01, Bastien DUMONT <[1]bastien.dumont-VwIFZPTo/vqzQB+pC5nmwQ@public.gmane.orgt>
> wrote:
> 
>     If you want to sort by call-number, so you should replace <key variable=
>     "citation-number"/> with <key variable="call-number"/>.
> 
>     Le Monday 24 January 2022 à 12:59:05PM, William Lupton a écrit :
>     > Thanks Bastien. Please see below:
>     >
>     > On Mon, 24 Jan 2022 at 10:34, Bastien DUMONT <[1][2]
>     bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
>     > wrote:
>     >
>     >     OK, so have you set instructions for sorting in your CSL file?
>     >     [2][3]https://docs.citationstyles.org/en/v1.0.2/specification.html#
>     sorting
>     >
>     >
>     > Yes. Let me share the relevant bits of my csl file:
>     >
>     >   <citation>
>     >     <layout delimiter="; ">
>     >       <text variable="title-short" suffix=" "/>
>     >       <group prefix="[" suffix="]">
>     >         <text variable="locator" suffix="/"/>
>     >         <text variable="citation-number"/>
>     >       </group>
>     >     </layout>
>     >   </citation>
>     >
>     >   <bibliography entry-spacing="0">
>     >     <sort>
>     >       <key variable="citation-number"/>
>     >     </sort>
>     >     <layout>
>     >       <text variable="citation-number" prefix="[" suffix="]"
>     >             display="left-margin"/>
>     >       <group delimiter=", " display="right-inline">
>     >         <text variable="call-number" text-decoration="underline"/>
>     >         <text variable="title" font-style="italic"/>
>     >         <text variable="publisher"/>
>     >         <date date-parts="year" form="text" variable="issued"/>
>     >         <text variable="URL"/>
>     >       </group>
>     >     </layout>
>     >   </bibliography>
>     >  
>     >
>     >     "citation-number" is the "variable that corresponds to the sorted
>     order
>     >     (regardless of sort key)" that you are looking for.
>     >
>     >
>     > Hmm. But is it? In my example (repeated here for simplicity) the markdown
>     shown
>     > below and my CSL gives this (citations sorted by citation-number, which
>     appears
>     > to be order of reference):
>     >
>     > [1]    RFC 2549, IP over Avian Carriers with Quality of Service, IETF,
>     1999
>     > [2]    RFC 1149, Avian Carriers, IETF, 1990
>     >
>     > ...but I'd like this (citations sorted by call-number):
>     >
>     > [1]    RFC 1149, Avian Carriers, IETF, 1990
>     > [2]    RFC 2549, IP over Avian Carriers with Quality of Service, IETF,
>     1999
>     >
>     > Markdown:
>     >
>     > ---
>     > title: Reference order illustration
>     >
>     > references:
>     > - id: RFC1149
>     >   call-number: RFC 1149
>     >   title: Avian Carriers
>     >   publisher: IETF
>     >   issued: {year: 1990}
>     >
>     > - id: RFC2549
>     >   call-number: RFC 2549
>     >   title: IP over Avian Carriers with Quality of Service
>     >   publisher: IETF
>     >   issued: {year: 1999}
>     > ...
>     >
>     > # Text
>     >
>     > This is RFC 2549 [@RFC2549].
>     >
>     > This is RFC 1149 [@RFC1149].
>     >
>     > # References
>     >  
>     >
>     >     Le Monday 24 January 2022 à 10:01:21AM, William Lupton a écrit :
>     >     > That's what I'm currently using :). It's assigned the values 1, 2,
>     3 etc.
>     >     as
>     >     > citations are encountered (please see my example). Thanks, W.
>     >     >
>     >     > On Fri, 21 Jan 2022 at 17:37, Bastien DUMONT <[1][3]
>     >     [4]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
>     >     > wrote:
>     >     >
>     >     >     I have not tested, but does the CSL 'citation-number' variable
>     >     address your
>     >     >     need?
>     >     >     [2][4][5]https://docs.citationstyles.org/en/v1.0.2/
>     specification.html#
>     >     >     toc-entry-92
>     >     >
>     >     >     Le Friday 21 January 2022 à 04:36:56PM, William Lupton a écrit
>     :
>     >     >     > All,
>     >     >     >
>     >     >     > I've been using citation-number to label and sort citations,
>     which
>     >     means
>     >     >     that
>     >     >     > citations are presented in the order in which they were
>     cited.
>     >     >     >
>     >     >     > I'd prefer to have citations sorted by call-number but still
>     >     labeled 1,
>     >     >     2, 3...
>     >     >     > However, I can't see how to do this: it would apparently
>     require a
>     >     >     numeric
>     >     >     > variable that corresponds to the sorted order (regardless of
>     sort
>     >     key).
>     >     >     >
>     >     >     > (It seems that, if this isn't possible using standard CSL, it
>     could
>     >     be
>     >     >     > addressed by asking citeproc to support a non-standard
>     >     'sorted-number'
>     >     >     (or
>     >     >     > similar) variable.)
>     >     >     >
>     >     >     > Any ideas?
>     >     >     >
>     >     >     > Thanks,
>     >     >     > William
>     >     >     >
>     >     >     > ---- example ----
>     >     >     >
>     >     >     > With the markdown shown below, my CSL (which I could supply)
>     gives
>     >     this
>     >     >     > (citations sorted by order of reference):
>     >     >     >
>     >     >     > [1]    RFC 2549, IP over Avian Carriers with Quality of
>     Service,
>     >     IETF,
>     >     >     1999
>     >     >     > [2]    RFC 1149, Avian Carriers, IETF, 1990
>     >     >     >
>     >     >     > ...but I'd like this (citations sorted by call-number):
>     >     >     >
>     >     >     > [1]    RFC 1149, Avian Carriers, IETF, 1990
>     >     >     > [2]    RFC 2549, IP over Avian Carriers with Quality of
>     Service,
>     >     IETF,
>     >     >     1999
>     >     >     >
>     >     >     > ---
>     >     >     > title: Reference order illustration
>     >     >     >
>     >     >     > references:
>     >     >     > - id: RFC1149
>     >     >     >   call-number: RFC 1149
>     >     >     >   title: Avian Carriers
>     >     >     >   publisher: IETF
>     >     >     >   issued: {year: 1990}
>     >     >     >
>     >     >     > - id: RFC2549
>     >     >     >   call-number: RFC 2549
>     >     >     >   title: IP over Avian Carriers with Quality of Service
>     >     >     >   publisher: IETF
>     >     >     >   issued: {year: 1999}
>     >     >     > ...
>     >     >     >
>     >     >     > # Text
>     >     >     >
>     >     >     > This is RFC 2549 [@RFC2549].
>     >     >     >
>     >     >     > This is RFC 1149 [@RFC1149].
>     >     >     >
>     >     >     > # References
>     >     >     >
>     >     >     > --
>     >     >     > 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 [1][3][5][6]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >     >     > To view this discussion on the web visit [2][4][6]https://
>     >     [7]groups.google.com/
>     >     >     d/msgid/
>     >     >     > pandoc-discuss/
>     >     >     > CAEe_xxga_Ow_9OE%2B7JSyDSNo%2B9ePE3CY1LsbpasZsP9SBRak7A%[5]
>     >     >     [7][8]40mail.gmail.com.
>     >     >     >
>     >     >     > References:
>     >     >     >
>     >     >     > [1] mailto:[6][8][9]
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >     > [2] [7][9][10]https://groups.google.com/d/msgid/
>     pandoc-discuss/
>     >     >     CAEe_xxga_Ow_9OE%2B7JSyDSNo%2B9ePE3CY1LsbpasZsP9SBRak7A%[10]
>     >     [11]40mail.gmail.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 [8][11][12]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     .
>     >     >     To view this discussion on the web visit [9][12]https://
>     >     [13]groups.google.com/d/
>     >     >     msgid/pandoc-discuss/YervEDxywP%2BR%2BYIV%40localhost.
>     >     >
>     >     > --
>     >     > 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][13][14]pandoc-discuss+unsubscribe@googlegroups.com.
>     >     > To view this discussion on the web visit [11][14]https://
>     >     [15]groups.google.com/d/msgid/
>     >     > pandoc-discuss/
>     >     > CAEe_xxgK%3D6C-7-3XYGpvMMeOL5Rv%3D4e0tp5efEoZb6_j3qCkHA%[15]
>     >     [16]40mail.gmail.com.
>     >     >
>     >     > References:
>     >     >
>     >     > [1] mailto:[16][17]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     >     > [2] [17][18]https://docs.citationstyles.org/en/v1.0.2/
>     specification.html#
>     >     toc-entry-92
>     >     > [3] mailto:[18][19]pandoc-discuss%2Bunsubscribe@googlegroups.com
>     >     > [4] [19][20]https://groups.google.com/d/msgid/
>     >     > [5] [20][21]http://40mail.gmail.com/
>     >     > [6] mailto:[21][22]pandoc-discuss%2Bunsubscribe@googlegroups.com
>     >     > [7] [22][23]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     CAEe_xxga_Ow_9OE%2B7JSyDSNo%2B9ePE3CY1LsbpasZsP9SBRak7A%[24]
>     40mail.gmail.com?
>     >     utm_medium=email&utm_source=footer
>     >     > [8] mailto:[23][25]pandoc-discuss%2Bunsubscribe@googlegroups.com
>     >     > [9] [24][26]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     YervEDxywP%2BR%2BYIV%40localhost
>     >     > [10] mailto:[25][27]pandoc-discuss+unsubscribe@googlegroups.com
>     >     > [11] [26][28]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     CAEe_xxgK%3D6C-7-3XYGpvMMeOL5Rv%3D4e0tp5efEoZb6_j3qCkHA%[29]
>     40mail.gmail.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 [27][30]pandoc-discuss+unsubscribe@googlegroups.com.
>     >     To view this discussion on the web visit [28][31]https://
>     groups.google.com/d/
>     >     msgid/pandoc-discuss/Ye6ATiVa/BQBtwrw%40localhost.
>     >
>     > --
>     > 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 [29][32]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     > To view this discussion on the web visit [30][33]https://
>     groups.google.com/d/msgid/
>     > pandoc-discuss/
>     > CAEe_xxhmuMOj_dkxxKEF5TxbZpR0JpO1qmDtnLvcrR662Z2wnQ%[34]40mail.gmail.com.
>     >
>     > References:
>     >
>     > [1] mailto:[35]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [2] [36]https://docs.citationstyles.org/en/v1.0.2/specification.html#
>     sorting
>     > [3] mailto:[37]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [4] [38]https://docs.citationstyles.org/en/v1.0.2/specification.html#
>     > [5] mailto:[39]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [6] [40]https://groups.google.com/
>     > [7] [41]http://40mail.gmail.com/
>     > [8] mailto:[42]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [9] [43]https://groups.google.com/d/msgid/pandoc-discuss/
>     > [10] [44]http://40mail.gmail.com/
>     > [11] mailto:[45]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [12] [46]https://groups.google.com/d/
>     > [13] mailto:[47]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [14] [48]https://groups.google.com/d/msgid/
>     > [15] [49]http://40mail.gmail.com/
>     > [16] mailto:[50]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [17] [51]https://docs.citationstyles.org/en/v1.0.2/specification.html#
>     toc-entry-92
>     > [18] mailto:[52]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [19] [53]https://groups.google.com/d/msgid/
>     > [20] [54]http://40mail.gmail.com/
>     > [21] mailto:[55]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [22] [56]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAEe_xxga_Ow_9OE%2B7JSyDSNo%2B9ePE3CY1LsbpasZsP9SBRak7A%40mail.gmail.com?
>     utm_medium=email&utm_source=footer
>     > [23] mailto:[57]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [24] [58]https://groups.google.com/d/msgid/pandoc-discuss/
>     YervEDxywP%2BR%2BYIV%40localhost
>     > [25] mailto:[59]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [26] [60]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAEe_xxgK%3D6C-7-3XYGpvMMeOL5Rv%3D4e0tp5efEoZb6_j3qCkHA%40mail.gmail.com?
>     utm_medium=email&utm_source=footer
>     > [27] mailto:[61]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [28] [62]https://groups.google.com/d/msgid/pandoc-discuss/Ye6ATiVa/
>     BQBtwrw%40localhost
>     > [29] mailto:[63]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [30] [64]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAEe_xxhmuMOj_dkxxKEF5TxbZpR0JpO1qmDtnLvcrR662Z2wnQ%40mail.gmail.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 [65]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     To view this discussion on the web visit [66]https://groups.google.com/d/
>     msgid/pandoc-discuss/Ye6wynW19ALDKb4u%40localhost.
> 
> --
> 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 [67]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit [68]https://groups.google.com/d/msgid/
> pandoc-discuss/
> CAEe_xxgGSPFFcQr0e9mc6A1ZY%3DWpS%3D-z8bbEySZaWCPXrfmzrQ%40mail.gmail.com.
> 
> References:
> 
> [1] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [2] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [3] https://docs.citationstyles.org/en/v1.0.2/specification.html#sorting
> [4] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [5] https://docs.citationstyles.org/en/v1.0.2/specification.html#
> [6] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [7] http://groups.google.com/
> [8] http://40mail.gmail.com/
> [9] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [10] https://groups.google.com/d/msgid/pandoc-discuss/
> [11] http://40mail.gmail.com/
> [12] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [13] http://groups.google.com/d/
> [14] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [15] http://groups.google.com/d/msgid/
> [16] http://40mail.gmail.com/
> [17] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [18] https://docs.citationstyles.org/en/v1.0.2/specification.html#
> [19] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [20] https://groups.google.com/d/msgid/
> [21] http://40mail.gmail.com/
> [22] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [23] https://groups.google.com/d/msgid/pandoc-discuss/
> [24] http://40mail.gmail.com/
> [25] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [26] https://groups.google.com/d/msgid/pandoc-discuss/
> [27] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [28] https://groups.google.com/d/msgid/pandoc-discuss/
> [29] http://40mail.gmail.com/
> [30] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [31] https://groups.google.com/d/
> [32] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [33] https://groups.google.com/d/msgid/
> [34] http://40mail.gmail.com/
> [35] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [36] https://docs.citationstyles.org/en/v1.0.2/specification.html#sorting
> [37] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [38] https://docs.citationstyles.org/en/v1.0.2/specification.html#
> [39] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [40] https://groups.google.com/
> [41] http://40mail.gmail.com/
> [42] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [43] https://groups.google.com/d/msgid/pandoc-discuss/
> [44] http://40mail.gmail.com/
> [45] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [46] https://groups.google.com/d/
> [47] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [48] https://groups.google.com/d/msgid/
> [49] http://40mail.gmail.com/
> [50] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [51] https://docs.citationstyles.org/en/v1.0.2/specification.html#toc-entry-92
> [52] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [53] https://groups.google.com/d/msgid/
> [54] http://40mail.gmail.com/
> [55] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [56] https://groups.google.com/d/msgid/pandoc-discuss/CAEe_xxga_Ow_9OE%2B7JSyDSNo%2B9ePE3CY1LsbpasZsP9SBRak7A%40mail.gmail.com?utm_medium=email&utm_source=footer
> [57] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [58] https://groups.google.com/d/msgid/pandoc-discuss/YervEDxywP%2BR%2BYIV%40localhost
> [59] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [60] https://groups.google.com/d/msgid/pandoc-discuss/CAEe_xxgK%3D6C-7-3XYGpvMMeOL5Rv%3D4e0tp5efEoZb6_j3qCkHA%40mail.gmail.com?utm_medium=email&utm_source=footer
> [61] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [62] https://groups.google.com/d/msgid/pandoc-discuss/Ye6ATiVa/BQBtwrw%40localhost
> [63] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [64] https://groups.google.com/d/msgid/pandoc-discuss/CAEe_xxhmuMOj_dkxxKEF5TxbZpR0JpO1qmDtnLvcrR662Z2wnQ%40mail.gmail.com?utm_medium=email&utm_source=footer
> [65] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [66] https://groups.google.com/d/msgid/pandoc-discuss/Ye6wynW19ALDKb4u%40localhost
> [67] mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [68] https://groups.google.com/d/msgid/pandoc-discuss/CAEe_xxgGSPFFcQr0e9mc6A1ZY%3DWpS%3D-z8bbEySZaWCPXrfmzrQ%40mail.gmail.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/Ye7rhuIxSSods5EK%40localhost.


  parent reply	other threads:[~2022-01-24 18:10 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-21 16:36 William Lupton
     [not found] ` <CAEe_xxga_Ow_9OE+7JSyDSNo+9ePE3CY1LsbpasZsP9SBRak7A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-21 17:36   ` Bastien DUMONT
2022-01-24 10:01     ` William Lupton
     [not found]       ` <CAEe_xxgK=6C-7-3XYGpvMMeOL5Rv=4e0tp5efEoZb6_j3qCkHA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-24 10:32         ` Bastien DUMONT
2022-01-24 12:59           ` William Lupton
     [not found]             ` <CAEe_xxhmuMOj_dkxxKEF5TxbZpR0JpO1qmDtnLvcrR662Z2wnQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-24 13:59               ` Bastien DUMONT
2022-01-24 17:17                 ` William Lupton
     [not found]                   ` <CAEe_xxgGSPFFcQr0e9mc6A1ZY=WpS=-z8bbEySZaWCPXrfmzrQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-24 18:10                     ` Bastien DUMONT [this message]
2022-01-25  9:49                       ` William Lupton
     [not found]                         ` <CAEe_xxiG4+1dbGzmvm_km9=3nEVc_LmCz-zja7MeW3s_W+23Zg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-25 10:05                           ` Bastien DUMONT

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=Ye7rhuIxSSods5EK@localhost \
    --to=bastien.dumont-vwifzpto/vqstnjn9+bgxg@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).