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: pandoc-crossref not playing nice with header includes
Date: Tue,  7 Mar 2023 19:37:37 +0000	[thread overview]
Message-ID: <ZAeSgddcCKa7EmDt@localhost> (raw)
In-Reply-To: <CAMwawgPtfX8+qy4q2nx7+DL-kWhX82QnWh6BQ8CHPyHGZ3uuzw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

OK, thank you for the clarification. Since minted.lua transforms the CodeBlock into a RawBlock, the right order of invocation may be include-code-files.lua, pandoc-crossrefs, minted.lua.

Le Tuesday 07 March 2023 à 08:30:50PM, A A a écrit :
> I guess you could think of it this way: My goal was to combine functionality
> from the 3 different filters in the way I described, since no filter exists
> which can do all of those things in one go.  My first attempt at achieving that
> goal was very crude, since I sequentially applied the three filters and
> expected them to be compatible with each other. I ran into the compilation
> error at that point, which is why I started this thread. Upon further
> discussion/thought, I started to realize that even if I do fix the compilation
> error (which is a LaTeX problem), that doesn't guarantee that the functionality
> will be combined in the way I expect (which is a pandoc/Lua/AST problem).
> 
> On Tue, 7 Mar 2023 at 20:19, <[1]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org> wrote:
> 
>     Recalling your original post:
> 
>     > I get an error upon compilation, because pandoc-crossref defines its own
>     > header include which gets overwritten by my -H header.tex.
> 
>     Do you mean now that you resolved this problem and ran into another one?
>     They are distinct issues, even if they affect you simultaneously, aren't
>     they?
> 
>     Le Tuesday 07 March 2023 à 07:28:26PM, A A a écrit :
>     > I’m already familiar with pandoc templates, but I don’t think they are
>     the
>     > solution here. You might recall I’m using 3 distinct filters, namely
>     > pandoc-crossref.lua, minted.lua, include-code-files.lua. I’m using each
>     because
>     > of some functionality it provides:
>     >
>     >   • pandoc-crossref.lua: The ability to cross-reference listings and
>     caption
>     >     them
>     >   • minted.lua: The ability to break long code lines within a listing.
>     >   • include-code-files.lua: The ability to include external files in a
>     listing.
>     >
>     > I expected that using these filters in unison would result in an
>     intersection
>     > of the mentioned functionality. However, this is incorrect. The
>     underlying
>     > issue here is that they all act on the same AST element (i.e. CodeBlock)
>     and
>     > calling them sequentially like that will inevitably result in conflicts.
>     >
>     > As you can see it doesn’t really matter what I do with the template or
>     the
>     > header, because neither of those two things act on the AST.
>     >
>     >
>     > On Tue, 7 Mar 2023 at 16:51, Bastien DUMONT <[1][2]
>     bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
>     > wrote:
>     >
>     >     You can get the default template for LaTeX with pandoc -D latex,
>     customize
>     >     it according to your needs and specify the resulting file with
>     --template
>     >     in the command. There is nothing specific here for pandoc-crossrefs.
>     See
>     >     the section about templates in the manual of Pandoc for more details.
>     >
>     >     Le Tuesday 07 March 2023 à 02:06:17PM, A A a écrit :
>     >     >     You can include it in an external metadata file referred to via
>     the
>     >     >     —metadata-file option
>     >     >
>     >     > I believe that would still be a YAML file with weird syntax like
>     this?
>     >     >
>     >     > header-includes:
>     >     > - |
>     >     >   ~~~{=latex}
>     >     >   \let\oldsection\section
>     >     >   \renewcommand{\section}[1]{\clearpage\oldsection{#1}}
>     >     >   ~~~
>     >     >
>     >     > If so then yes, I definitely prefer doing my own header.tex. But
>     this
>     >     would
>     >     > have to include all the content necessary for pandoc-crossref to
>     work
>     >     properly.
>     >     > Any ideas where I could find this content? I briefly skimmed the
>     >     > pandoc-crossref repo but didn’t find anything obvious…
>     >     >
>     >     >
>     >     > On Tue, 7 Mar 2023 at 12:16, Bastien DUMONT <[1][2]
>     >     [3]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
>     >     > wrote:
>     >     >
>     >     >     You can include it in an external metadata file referred to via
>     the
>     >     >     --metadata-file option. However, if you customize the LaTeX
>     preamble
>     >     >     heavily, it may be preferable to use a custom template
>     including the
>     >     >     content of header.tex.
>     >     >
>     >     >     Le Tuesday 07 March 2023 à 12:07:19PM, A A a écrit :
>     >     >     > That would force me to put my header content within my
>     markdown
>     >     file and
>     >     >     remove
>     >     >     > "header.tex" completely. I would very much prefer to keep
>     them as
>     >     >     separate
>     >     >     > files. 
>     >     >     >
>     >     >     > The header.tex for my use case ia much more involved.
>     Including it
>     >     inside
>     >     >     the
>     >     >     > markdowm YAML block like that would be quite ugly IMO.
>     >     >     >
>     >     >     >
>     >     >     >
>     >     >     >
>     >     >     >
>     >     >     > On Tue, 7 Mar 2023, 10:16 Bastien DUMONT, <[1][2]
>     >     >     [3][4]bastien.dumont@posteo.net> wrote:
>     >     >     >
>     >     >     >     Since you don't use a custom template, you don't have to
>     add
>     >     $for
>     >     >     >     (header-includes)$ etc. anywhere: it is already included
>     in the
>     >     >     default
>     >     >     >     LaTeX template.
>     >     >     >     The answer for your use case is here: [2][3][4]https://
>     >     [5]github.com/
>     >     >     lierdakil/
>     >     >     >     pandoc-crossref/issues/47#issuecomment-614404532
>     >     >     >
>     >     >     >     Le Tuesday 07 March 2023 à 10:02:38AM, A A a écrit :
>     >     >     >     > Files
>     >     >     >     >
>     >     >     >     > test.py
>     >     >     >     >
>     >     >     >     > def f(x):
>     >     >     >     >     return x
>     >     >     >     >
>     >     >     >     > test.md
>     >     >     >     >
>     >     >     >     > ~~~{
>     >     >     >     >   #lst:test
>     >     >     >     >   .py
>     >     >     >     >   include="test.py"
>     >     >     >     >   caption=`test.py`
>     >     >     >     > }
>     >     >     >     > ~~~
>     >     >     >     >
>     >     >     >     > header.tex
>     >     >     >     >
>     >     >     >     > \usepackage{minted}
>     >     >     >     >
>     >     >     >     > \definecolor{bg}{rgb}{0.85, 0.85. 0.85}
>     >     >     >     > \setminted{breaklines=true, bgcolor=bg, breakanywhere}
>     >     >     >     >
>     >     >     >     > Compilation
>     >     >     >     >
>     >     >     >     > I’m compiling with:
>     >     >     >     >
>     >     >     >     > pandoc -s -F pandoc-crossref -L include-code-files.lua
>     -L
>     >     >     minted.lua -H
>     >     >     >     header.tex --from markdown --to latex test.md -o test.tex
>     >     >     >     > latexmk --shell-escape -pdflatex test.tex
>     >     >     >     >
>     >     >     >     > I get an error upon compilation, because
>     pandoc-crossref
>     >     defines
>     >     >     its own
>     >     >     >     header
>     >     >     >     > include which gets overwritten by my -H header.tex.
>     This [1]
>     >     link
>     >     >     provides
>     >     >     >     more
>     >     >     >     > information.
>     >     >     >     >
>     >     >     >     > I tried the solution proposed by @lierdakil in the link
>     >     provided
>     >     >     but get
>     >     >     >     an
>     >     >     >     > error:
>     >     >     >     >
>     >     >     >     >     ! LaTeX Error: Missing \begin{document}.
>     >     >     >     >
>     >     >     >     >     See the LaTeX manual or LaTeX Companion for
>     explanation.
>     >     >     >     >     Type H for immediate help.
>     >     >     >     >
>     >     >     >     >     l.97 $
>     >     >     >     >     for(header-includes)$
>     >     >     >     >     ?
>     >     >     >     >
>     >     >     >     > So I’m at a bit of a loss regarding what to do here,
>     Any
>     >     pointers
>     >     >     >     welcome.
>     >     >     >     > Thanks
>     >     >     >     >
>     >     >     >     > --
>     >     >     >     > 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 [2][3][4][5][6]
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >     >     >     > To view this discussion on the web visit [3][4][5]
>     https://
>     >     >     [6][7]groups.google.com/
>     >     >     >     d/msgid/
>     >     >     >     > pandoc-discuss/
>     >     >     >     > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%
>     [5][6]
>     >     >     [7][8]40mail.gmail.com
>     >     >     >     .
>     >     >     >     >
>     >     >     >     > References:
>     >     >     >     >
>     >     >     >     > [1] [6][7][8][9]https://github.com/lierdakil/
>     pandoc-crossref/
>     >     issues/47
>     >     >     >     > [2] mailto:[7][8][9]
>     >     [10]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >     >     > [3] [8][9][10][11]https://groups.google.com/d/msgid/
>     >     pandoc-discuss/
>     >     >     >     CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%
>     [10]
>     >     >     [11][12]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 [9][11][12][13]
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     .
>     >     >     >     To view this discussion on the web visit [10][12]https://
>     >     >     [13][14]groups.google.com/d/
>     >     >     >     msgid/pandoc-discuss/ZAcA4dThsf/pAK2e%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 [11][13][14][15]
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >     >     > To view this discussion on the web visit [12][14]https://
>     >     >     [15][16]groups.google.com/d/msgid/
>     >     >     > pandoc-discuss/
>     >     >     > CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%[15]
>     >     >     [16][17]40mail.gmail.com.
>     >     >     >
>     >     >     > References:
>     >     >     >
>     >     >     > [1] mailto:[16][17][18]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     >     >     > [2] [17][18][19]https://github.com/lierdakil/pandoc-crossref/
>     issues/47#
>     >     >     issuecomment-614404532
>     >     >     > [3] mailto:[18][19][20]
>     pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >     > [4] [19][20][21]https://groups.google.com/d/msgid/
>     >     >     > [5] [20][21][22]http://40mail.gmail.com/
>     >     >     > [6] [21][22][23]https://github.com/lierdakil/pandoc-crossref/
>     issues/47
>     >     >     > [7] mailto:[22][23][24]
>     pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >     > [8] [23][24][25]https://groups.google.com/d/msgid/
>     pandoc-discuss/
>     >     >     CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%[25]
>     >     [26]40mail.gmail.com?
>     >     >     utm_medium=email&utm_source=footer
>     >     >     > [9] mailto:[24][26][27]
>     pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >     > [10] [25][27][28]https://groups.google.com/d/msgid/
>     pandoc-discuss/
>     >     ZAcA4dThsf/
>     >     >     pAK2e%40localhost
>     >     >     > [11] mailto:[26][28][29]
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     >     > [12] [27][29][30]https://groups.google.com/d/msgid/
>     pandoc-discuss/
>     >     >     CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%[30]
>     >     [31]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 [28][31][32]
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     >     >     To view this discussion on the web visit [29][32]https://
>     >     [33]groups.google.com/d/
>     >     >     msgid/pandoc-discuss/ZAcdDn%2Bj/f55E9xQ%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 [30][33][34]pandoc-discuss+unsubscribe@googlegroups.com.
>     >     > To view this discussion on the web visit [31][34]https://
>     >     [35]groups.google.com/d/msgid/
>     >     > pandoc-discuss/
>     >     > CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%[35]
>     >     [36]40mail.gmail.com.
>     >     >
>     >     > References:
>     >     >
>     >     > [1] mailto:[36][37]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     >     > [2] mailto:[37][38]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     >     > [3] [38][39]https://github.com/lierdakil/
>     >     > [4] mailto:[39][40]pandoc-discuss%2Bunsubscribe@googlegroups.com
>     >     > [5] [40][41]https://groups.google.com/
>     >     > [6] [41][42]http://40mail.gmail.com/
>     >     > [7] [42][43]https://github.com/lierdakil/pandoc-crossref/issues/47
>     >     > [8] mailto:[43][44]pandoc-discuss%2Bunsubscribe@googlegroups.com
>     >     > [9] [44][45]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     > [10] [45][46]http://40mail.gmail.com/
>     >     > [11] mailto:[46][47]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [12] [47][48]https://groups.google.com/d/
>     >     > [13] mailto:[48][49]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [14] [49][50]https://groups.google.com/d/msgid/
>     >     > [15] [50][51]http://40mail.gmail.com/
>     >     > [16] mailto:[51][52]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     >     > [17] [52][53]https://github.com/lierdakil/pandoc-crossref/issues/47
>     #
>     >     issuecomment-614404532
>     >     > [18] mailto:[53][54]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [19] [54][55]https://groups.google.com/d/msgid/
>     >     > [20] [55][56]http://40mail.gmail.com/
>     >     > [21] [56][57]https://github.com/lierdakil/pandoc-crossref/issues/47
>     >     > [22] mailto:[57][58]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [23] [58][59]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%[60]
>     40mail.gmail.com?
>     >     utm_medium=email&utm_source=footer
>     >     > [24] mailto:[59][61]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [25] [60][62]https://groups.google.com/d/msgid/pandoc-discuss/
>     ZAcA4dThsf/
>     >     pAK2e%40localhost
>     >     > [26] mailto:[61][63]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [27] [62][64]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%[65]
>     40mail.gmail.com?
>     >     utm_medium=email&utm_source=footer
>     >     > [28] mailto:[63][66]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     >     > [29] [64][67]https://groups.google.com/d/msgid/pandoc-discuss/
>     ZAcdDn%2Bj/
>     >     f55E9xQ%40localhost
>     >     > [30] mailto:[65][68]pandoc-discuss+unsubscribe@googlegroups.com
>     >     > [31] [66][69]https://groups.google.com/d/msgid/pandoc-discuss/
>     >     CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%[70]
>     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 [67][71]pandoc-discuss+unsubscribe@googlegroups.com.
>     >     To view this discussion on the web visit [68][72]https://
>     groups.google.com/d/
>     >     msgid/pandoc-discuss/ZAddfXTclu2naUlX%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 [69][73]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     > To view this discussion on the web visit [70][74]https://
>     groups.google.com/d/msgid/
>     > pandoc-discuss/
>     > CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A%[75]
>     40mail.gmail.com.
>     >
>     > References:
>     >
>     > [1] mailto:[76]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [2] mailto:[77]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [3] mailto:[78]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [4] [79]https://github.com/
>     > [5] mailto:[80]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [6] [81]http://groups.google.com/
>     > [7] [82]http://40mail.gmail.com/
>     > [8] [83]https://github.com/lierdakil/pandoc-crossref/issues/47
>     > [9] mailto:[84]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [10] [85]https://groups.google.com/d/msgid/pandoc-discuss/
>     > [11] [86]http://40mail.gmail.com/
>     > [12] mailto:[87]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [13] [88]http://groups.google.com/d/
>     > [14] mailto:[89]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [15] [90]http://groups.google.com/d/msgid/
>     > [16] [91]http://40mail.gmail.com/
>     > [17] mailto:[92]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [18] [93]https://github.com/lierdakil/pandoc-crossref/issues/47#
>     > [19] mailto:[94]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [20] [95]https://groups.google.com/d/msgid/
>     > [21] [96]http://40mail.gmail.com/
>     > [22] [97]https://github.com/lierdakil/pandoc-crossref/issues/47
>     > [23] mailto:[98]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [24] [99]https://groups.google.com/d/msgid/pandoc-discuss/
>     > [25] [100]http://40mail.gmail.com/
>     > [26] mailto:[101]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [27] [102]https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/
>     > [28] mailto:[103]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [29] [104]https://groups.google.com/d/msgid/pandoc-discuss/
>     > [30] [105]http://40mail.gmail.com/
>     > [31] mailto:[106]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [32] [107]https://groups.google.com/d/
>     > [33] mailto:[108]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [34] [109]https://groups.google.com/d/msgid/
>     > [35] [110]http://40mail.gmail.com/
>     > [36] mailto:[111]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [37] mailto:[112]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [38] [113]https://github.com/lierdakil/
>     > [39] mailto:[114]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [40] [115]https://groups.google.com/
>     > [41] [116]http://40mail.gmail.com/
>     > [42] [117]https://github.com/lierdakil/pandoc-crossref/issues/47
>     > [43] mailto:[118]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [44] [119]https://groups.google.com/d/msgid/pandoc-discuss/
>     > [45] [120]http://40mail.gmail.com/
>     > [46] mailto:[121]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [47] [122]https://groups.google.com/d/
>     > [48] mailto:[123]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [49] [124]https://groups.google.com/d/msgid/
>     > [50] [125]http://40mail.gmail.com/
>     > [51] mailto:[126]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
>     > [52] [127]https://github.com/lierdakil/pandoc-crossref/issues/47#
>     issuecomment-614404532
>     > [53] mailto:[128]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [54] [129]https://groups.google.com/d/msgid/
>     > [55] [130]http://40mail.gmail.com/
>     > [56] [131]https://github.com/lierdakil/pandoc-crossref/issues/47
>     > [57] mailto:[132]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [58] [133]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%40mail.gmail.com?
>     utm_medium=email&utm_source=footer
>     > [59] mailto:[134]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [60] [135]https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/
>     pAK2e%40localhost
>     > [61] mailto:[136]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [62] [137]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%40mail.gmail.com?
>     utm_medium=email&utm_source=footer
>     > [63] mailto:[138]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [64] [139]https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/
>     f55E9xQ%40localhost
>     > [65] mailto:[140]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [66] [141]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%40mail.gmail.com?
>     utm_medium=email&utm_source=footer
>     > [67] mailto:[142]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [68] [143]https://groups.google.com/d/msgid/pandoc-discuss/
>     ZAddfXTclu2naUlX%40localhost
>     > [69] mailto:[144]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     > [70] [145]https://groups.google.com/d/msgid/pandoc-discuss/
>     CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A%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 [146]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     To view this discussion on the web visit [147]https://groups.google.com/d/
>     msgid/pandoc-discuss/ZAeOG4qBz9PPfadv%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 [148]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit [149]https://groups.google.com/d/msgid
> /pandoc-discuss/
> CAMwawgPtfX8%2Bqy4q2nx7%2BDL-kWhX82QnWh6BQ8CHPyHGZ3uuzw%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] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [4] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [5] http://github.com/
> [6] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [7] http://groups.google.com/
> [8] http://40mail.gmail.com/
> [9] https://github.com/lierdakil/pandoc-crossref/
> [10] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [11] https://groups.google.com/d/msgid/
> [12] http://40mail.gmail.com/
> [13] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [14] http://groups.google.com/d/
> [15] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [16] http://groups.google.com/d/msgid/
> [17] http://40mail.gmail.com/
> [18] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [19] https://github.com/lierdakil/pandoc-crossref/issues/47#
> [20] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [21] https://groups.google.com/d/msgid/
> [22] http://40mail.gmail.com/
> [23] https://github.com/lierdakil/pandoc-crossref/issues/47
> [24] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [25] https://groups.google.com/d/msgid/pandoc-discuss/
> [26] http://40mail.gmail.com/
> [27] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [28] https://groups.google.com/d/msgid/pandoc-discuss/
> [29] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [30] https://groups.google.com/d/msgid/pandoc-discuss/
> [31] http://40mail.gmail.com/
> [32] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [33] http://groups.google.com/d/
> [34] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [35] http://groups.google.com/d/msgid/
> [36] http://40mail.gmail.com/
> [37] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [38] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [39] https://github.com/lierdakil/
> [40] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [41] https://groups.google.com/
> [42] http://40mail.gmail.com/
> [43] https://github.com/lierdakil/pandoc-crossref/issues/47
> [44] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [45] https://groups.google.com/d/msgid/pandoc-discuss/
> [46] http://40mail.gmail.com/
> [47] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [48] https://groups.google.com/d/
> [49] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [50] https://groups.google.com/d/msgid/
> [51] http://40mail.gmail.com/
> [52] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [53] https://github.com/lierdakil/pandoc-crossref/issues/47#
> [54] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [55] https://groups.google.com/d/msgid/
> [56] http://40mail.gmail.com/
> [57] https://github.com/lierdakil/pandoc-crossref/issues/47
> [58] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [59] https://groups.google.com/d/msgid/pandoc-discuss/
> [60] http://40mail.gmail.com/
> [61] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [62] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/
> [63] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [64] https://groups.google.com/d/msgid/pandoc-discuss/
> [65] http://40mail.gmail.com/
> [66] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [67] https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/
> [68] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [69] https://groups.google.com/d/msgid/pandoc-discuss/
> [70] http://40mail.gmail.com/
> [71] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [72] https://groups.google.com/d/
> [73] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [74] https://groups.google.com/d/msgid/
> [75] http://40mail.gmail.com/
> [76] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [77] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [78] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [79] https://github.com/
> [80] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [81] http://groups.google.com/
> [82] http://40mail.gmail.com/
> [83] https://github.com/lierdakil/pandoc-crossref/issues/47
> [84] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [85] https://groups.google.com/d/msgid/pandoc-discuss/
> [86] http://40mail.gmail.com/
> [87] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [88] http://groups.google.com/d/
> [89] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [90] http://groups.google.com/d/msgid/
> [91] http://40mail.gmail.com/
> [92] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [93] https://github.com/lierdakil/pandoc-crossref/issues/47#
> [94] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [95] https://groups.google.com/d/msgid/
> [96] http://40mail.gmail.com/
> [97] https://github.com/lierdakil/pandoc-crossref/issues/47
> [98] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [99] https://groups.google.com/d/msgid/pandoc-discuss/
> [100] http://40mail.gmail.com/
> [101] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [102] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/
> [103] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [104] https://groups.google.com/d/msgid/pandoc-discuss/
> [105] http://40mail.gmail.com/
> [106] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [107] https://groups.google.com/d/
> [108] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [109] https://groups.google.com/d/msgid/
> [110] http://40mail.gmail.com/
> [111] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [112] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [113] https://github.com/lierdakil/
> [114] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [115] https://groups.google.com/
> [116] http://40mail.gmail.com/
> [117] https://github.com/lierdakil/pandoc-crossref/issues/47
> [118] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [119] https://groups.google.com/d/msgid/pandoc-discuss/
> [120] http://40mail.gmail.com/
> [121] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [122] https://groups.google.com/d/
> [123] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [124] https://groups.google.com/d/msgid/
> [125] http://40mail.gmail.com/
> [126] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org
> [127] https://github.com/lierdakil/pandoc-crossref/issues/47#issuecomment-614404532
> [128] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [129] https://groups.google.com/d/msgid/
> [130] http://40mail.gmail.com/
> [131] https://github.com/lierdakil/pandoc-crossref/issues/47
> [132] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [133] https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%40mail.gmail.com?utm_medium=email&utm_source=footer
> [134] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [135] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/pAK2e%40localhost
> [136] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [137] https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%40mail.gmail.com?utm_medium=email&utm_source=footer
> [138] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [139] https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/f55E9xQ%40localhost
> [140] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [141] https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%40mail.gmail.com?utm_medium=email&utm_source=footer
> [142] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [143] https://groups.google.com/d/msgid/pandoc-discuss/ZAddfXTclu2naUlX%40localhost
> [144] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [145] https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A%40mail.gmail.com?utm_medium=email&utm_source=footer
> [146] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [147] https://groups.google.com/d/msgid/pandoc-discuss/ZAeOG4qBz9PPfadv%40localhost
> [148] mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> [149] https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPtfX8%2Bqy4q2nx7%2BDL-kWhX82QnWh6BQ8CHPyHGZ3uuzw%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/ZAeSgddcCKa7EmDt%40localhost.


  parent reply	other threads:[~2023-03-07 19:37 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-07  9:02 A A
     [not found] ` <CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD=Ug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-07  9:16   ` Bastien DUMONT
2023-03-07 11:07     ` A A
     [not found]       ` <CAMwawgNJcw9d-aMSPFStx+wU__GrsDVhhNrARCLf4CdHNiGCWA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-07 11:16         ` Bastien DUMONT
2023-03-07 13:06           ` A A
     [not found]             ` <CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh+thSJXyxPsufFqPC4czBQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-07 15:16               ` A A
2023-03-07 15:51               ` Bastien DUMONT
2023-03-07 18:28                 ` A A
     [not found]                   ` <CAMwawgPQN7Jv34tv+kioNYJO-HJ4nhwMco+7BXQCLOEDHDD39A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-07 18:42                     ` BPJ
2023-03-07 19:18                     ` bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg
2023-03-07 19:30                       ` A A
     [not found]                         ` <CAMwawgPtfX8+qy4q2nx7+DL-kWhX82QnWh6BQ8CHPyHGZ3uuzw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-07 19:37                           ` Bastien DUMONT [this message]
2023-03-07 19:48                             ` A A
     [not found]                               ` <CAMwawgPuUvCg1TtGbqz4zsi6-2yJkcAtC27rsx6nNV6id_z6vw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-03-07 20:31                                 ` Bastien DUMONT
2023-03-08 16:16                                   ` A A

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=ZAeSgddcCKa7EmDt@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).