Probably because of what @jpcirrus describes in this issue In any case I got a working combination now and have opened an issue here . On Tue, 7 Mar 2023 at 21:31, Bastien DUMONT wrote: > I cannot help more on this. Maybe see why \listoflistings is redefined > l. 89... > > Le Tuesday 07 March 2023 à 08:48:53PM, A A a écrit : > > Assuming header.yaml: > > > > header-includes: > > - | > > ~~~{=latex} > > \usepackage{minted} > > > > \definecolor{bg}{rgb}{0.85, 0.85. 0.85} > > \setminted{breaklines=true, bgcolor=bg, breakanywhere} > > ~~~ > > > > And compiling with > > > > pandoc -s -L include-code-files.lua -F pandoc-crossref -L minted.lua > --from markdown --to latex test.md -o test.tex --metadata-file header.yaml > > latexmk --shell-escape -pdflatex test.tex > > > > I unfortunately get the error: > > > > ! LaTeX Error: Command \listoflistings already defined. > > Or name \end… illegal, see p.192 of the manual. > > > > See the LaTeX manual or LaTeX Companion for explanation. > > Type H for immediate help. > > … > > > > l.89 …gs{\listof{codelisting}{List of Listings}} > > > > > > > > On Tue, 7 Mar 2023 at 20:37, Bastien DUMONT <[1] > bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org> > > wrote: > > > > 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][2]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] > > > [3]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][4]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][5]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org> 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][6]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] > > > [7]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > > > > > To view this discussion on the web visit > [3][4] > > [5] > > > https:// > > > > > [6][7][8]groups.google.com/ > > > > > > d/msgid/ > > > > > > > pandoc-discuss/ > > > > > > > > > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg% > > > [5][6] > > > > > [7][8][9]40mail.gmail.com > > > > > > . > > > > > > > > > > > > > > References: > > > > > > > > > > > > > > [1] [6][7][8][9][10] > https://github.com/lierdakil/ > > > pandoc-crossref/ > > > > issues/47 > > > > > > > [2] mailto:[7][8][9] > > > > [10][11]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > > > [3] [8][9][10][11][12] > https://groups.google.com/d > > /msgid/ > > > > pandoc-discuss/ > > > > > > > > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg% > > > [10] > > > > > [11][12][13]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] > > > [14]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > . > > > > > > To view this discussion on the web visit > [10][12] > > https:// > > > > > [13][14][15]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] > > > [16]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > > > > To view this discussion on the web visit > [12][14]https: > > // > > > > > [15][16][17]groups.google.com/d/msgid/ > > > > > > pandoc-discuss/ > > > > > > > CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA% > > [15] > > > > > [16][17][18]40mail.gmail.com. > > > > > > > > > > > > References: > > > > > > > > > > > > [1] mailto:[16][17][18][19] > bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > > > [2] [17][18][19][20] > https://github.com/lierdakil/ > > pandoc-crossref/ > > > issues/47# > > > > > issuecomment-614404532 > > > > > > [3] mailto:[18][19][20] > > > [21]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > > [4] [19][20][21][22] > https://groups.google.com/d/msgid/ > > > > > > [5] [20][21][22][23]http://40mail.gmail.com/ > > > > > > [6] [21][22][23][24] > https://github.com/lierdakil/ > > pandoc-crossref/ > > > issues/47 > > > > > > [7] mailto:[22][23][24] > > > [25]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > > [8] [23][24][25][26] > https://groups.google.com/d/msgid/ > > > pandoc-discuss/ > > > > > > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg% > > [25] > > > > [26][27]40mail.gmail.com? > > > > > utm_medium=email&utm_source=footer > > > > > > [9] mailto:[24][26][27] > > > [28]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > > [10] [25][27][28][29] > https://groups.google.com/d/msgid/ > > > pandoc-discuss/ > > > > ZAcA4dThsf/ > > > > > pAK2e%40localhost > > > > > > [11] mailto:[26][28][29] > > > [30]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > > [12] [27][29][30][31] > https://groups.google.com/d/msgid/ > > > pandoc-discuss/ > > > > > > CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA% > > [30] > > > > [31][32]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] > > > [33]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > > > To view this discussion on the web visit > [29][32]https:// > > > > [33][34]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][35] > > pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > > > To view this discussion on the web visit > [31][34]https:// > > > > [35][36]groups.google.com/d/msgid/ > > > > > pandoc-discuss/ > > > > > > CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%[35] > > > > [36][37]40mail.gmail.com. > > > > > > > > > > References: > > > > > > > > > > [1] mailto:[36][37][38]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > > [2] mailto:[37][38][39]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > > [3] [38][39][40]https://github.com/lierdakil/ > > > > > [4] mailto:[39][40][41] > > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [5] [40][41][42]https://groups.google.com/ > > > > > [6] [41][42][43]http://40mail.gmail.com/ > > > > > [7] [42][43][44] > https://github.com/lierdakil/pandoc-crossref/ > > issues/47 > > > > > [8] mailto:[43][44][45] > > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [9] [44][45][46]https://groups.google.com/d/msgid/ > > pandoc-discuss/ > > > > > [10] [45][46][47]http://40mail.gmail.com/ > > > > > [11] mailto:[46][47][48] > > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [12] [47][48][49]https://groups.google.com/d/ > > > > > [13] mailto:[48][49][50] > > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [14] [49][50][51]https://groups.google.com/d/msgid/ > > > > > [15] [50][51][52]http://40mail.gmail.com/ > > > > > [16] mailto:[51][52][53]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > > [17] [52][53][54] > https://github.com/lierdakil/pandoc-crossref > > /issues/47 > > > # > > > > issuecomment-614404532 > > > > > [18] mailto:[53][54][55] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [19] [54][55][56]https://groups.google.com/d/msgid/ > > > > > [20] [55][56][57]http://40mail.gmail.com/ > > > > > [21] [56][57][58] > https://github.com/lierdakil/pandoc-crossref > > /issues/47 > > > > > [22] mailto:[57][58][59] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [23] [58][59][60]https://groups.google.com/d/msgid/ > > pandoc-discuss/ > > > > > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%[60] > > > [61]40mail.gmail.com? > > > > utm_medium=email&utm_source=footer > > > > > [24] mailto:[59][61][62] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [25] [60][62][63]https://groups.google.com/d/msgid/ > > pandoc-discuss/ > > > ZAcA4dThsf/ > > > > pAK2e%40localhost > > > > > [26] mailto:[61][63][64] > > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [27] [62][64][65]https://groups.google.com/d/msgid/ > > pandoc-discuss/ > > > > > CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%[65] > > > [66]40mail.gmail.com? > > > > utm_medium=email&utm_source=footer > > > > > [28] mailto:[63][66][67] > > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [29] [64][67][68]https://groups.google.com/d/msgid/ > > pandoc-discuss/ > > > ZAcdDn%2Bj/ > > > > f55E9xQ%40localhost > > > > > [30] mailto:[65][68][69] > > pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > [31] [66][69][70]https://groups.google.com/d/msgid/ > > pandoc-discuss/ > > > > > CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%[70] > > > [71]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][72] > > pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > > To view this discussion on the web visit [68][72]https:// > > > [73]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][74]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > > To view this discussion on the web visit [70][74]https:// > > > [75]groups.google.com/d/msgid/ > > > > pandoc-discuss/ > > > > CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A%[75] > > > [76]40mail.gmail.com. > > > > > > > > References: > > > > > > > > [1] mailto:[76][77]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [2] mailto:[77][78]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [3] mailto:[78][79]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [4] [79][80]https://github.com/ > > > > [5] mailto:[80][81] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [6] [81][82]http://groups.google.com/ > > > > [7] [82][83]http://40mail.gmail.com/ > > > > [8] [83][84] > https://github.com/lierdakil/pandoc-crossref/issues/47 > > > > [9] mailto:[84][85] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [10] [85][86] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > > [11] [86][87]http://40mail.gmail.com/ > > > > [12] mailto:[87][88] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [13] [88][89]http://groups.google.com/d/ > > > > [14] mailto:[89][90] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [15] [90][91]http://groups.google.com/d/msgid/ > > > > [16] [91][92]http://40mail.gmail.com/ > > > > [17] mailto:[92][93]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [18] [93][94] > https://github.com/lierdakil/pandoc-crossref/issues/47 > > # > > > > [19] mailto:[94][95] > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [20] [95][96]https://groups.google.com/d/msgid/ > > > > [21] [96][97]http://40mail.gmail.com/ > > > > [22] [97][98] > https://github.com/lierdakil/pandoc-crossref/issues/47 > > > > [23] mailto:[98][99] > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [24] [99][100] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > > [25] [100][101]http://40mail.gmail.com/ > > > > [26] mailto:[101][102] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [27] [102][103] > https://groups.google.com/d/msgid/pandoc-discuss/ > > ZAcA4dThsf/ > > > > [28] mailto:[103][104] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [29] [104][105] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > > [30] [105][106]http://40mail.gmail.com/ > > > > [31] mailto:[106][107] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [32] [107][108]https://groups.google.com/d/ > > > > [33] mailto:[108][109] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [34] [109][110]https://groups.google.com/d/msgid/ > > > > [35] [110][111]http://40mail.gmail.com/ > > > > [36] mailto:[111][112]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [37] mailto:[112][113]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [38] [113][114]https://github.com/lierdakil/ > > > > [39] mailto:[114][115] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [40] [115][116]https://groups.google.com/ > > > > [41] [116][117]http://40mail.gmail.com/ > > > > [42] [117][118] > https://github.com/lierdakil/pandoc-crossref/issues/ > > 47 > > > > [43] mailto:[118][119] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [44] [119][120] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > > [45] [120][121]http://40mail.gmail.com/ > > > > [46] mailto:[121][122] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [47] [122][123]https://groups.google.com/d/ > > > > [48] mailto:[123][124] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [49] [124][125]https://groups.google.com/d/msgid/ > > > > [50] [125][126]http://40mail.gmail.com/ > > > > [51] mailto:[126][127]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > > [52] [127][128] > https://github.com/lierdakil/pandoc-crossref/issues/ > > 47# > > > issuecomment-614404532 > > > > [53] mailto:[128][129] > > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [54] [129][130]https://groups.google.com/d/msgid/ > > > > [55] [130][131]http://40mail.gmail.com/ > > > > [56] [131][132] > https://github.com/lierdakil/pandoc-crossref/issues/ > > 47 > > > > [57] mailto:[132][133] > > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [58] [133][134] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%[135] > > 40mail.gmail.com? > > > utm_medium=email&utm_source=footer > > > > [59] mailto:[134][136] > > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [60] [135][137] > https://groups.google.com/d/msgid/pandoc-discuss/ > > ZAcA4dThsf/ > > > pAK2e%40localhost > > > > [61] mailto:[136][138] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [62] [137][139] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%[140] > > 40mail.gmail.com? > > > utm_medium=email&utm_source=footer > > > > [63] mailto:[138][141] > > pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [64] [139][142] > https://groups.google.com/d/msgid/pandoc-discuss/ > > ZAcdDn%2Bj/ > > > f55E9xQ%40localhost > > > > [65] mailto:[140][143] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [66] [141][144] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%[145] > > 40mail.gmail.com? > > > utm_medium=email&utm_source=footer > > > > [67] mailto:[142][146] > pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [68] [143][147] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > ZAddfXTclu2naUlX%40localhost > > > > [69] mailto:[144][148] > pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > [70] [145][149] > https://groups.google.com/d/msgid/pandoc-discuss/ > > > CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A%[150] > > 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][151]pandoc-discuss+unsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm > . > > > To view this discussion on the web visit [147][152]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][153]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > > To view this discussion on the web visit [149][154]https:// > > groups.google.com/d/msgid > > > /pandoc-discuss/ > > > CAMwawgPtfX8%2Bqy4q2nx7%2BDL-kWhX82QnWh6BQ8CHPyHGZ3uuzw%[155] > > 40mail.gmail.com. > > > > > > References: > > > > > > [1] mailto:[156]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [2] mailto:[157]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [3] mailto:[158]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [4] mailto:[159]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [5] [160]http://github.com/ > > > [6] mailto:[161]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [7] [162]http://groups.google.com/ > > > [8] [163]http://40mail.gmail.com/ > > > [9] [164]https://github.com/lierdakil/pandoc-crossref/ > > > [10] mailto:[165]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [11] [166]https://groups.google.com/d/msgid/ > > > [12] [167]http://40mail.gmail.com/ > > > [13] mailto:[168]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [14] [169]http://groups.google.com/d/ > > > [15] mailto:[170]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [16] [171]http://groups.google.com/d/msgid/ > > > [17] [172]http://40mail.gmail.com/ > > > [18] mailto:[173]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [19] [174]https://github.com/lierdakil/pandoc-crossref/issues/47# > > > [20] mailto:[175]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [21] [176]https://groups.google.com/d/msgid/ > > > [22] [177]http://40mail.gmail.com/ > > > [23] [178]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [24] mailto:[179]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [25] [180]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [26] [181]http://40mail.gmail.com/ > > > [27] mailto:[182]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [28] [183]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [29] mailto:[184]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [30] [185]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [31] [186]http://40mail.gmail.com/ > > > [32] mailto:[187]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [33] [188]http://groups.google.com/d/ > > > [34] mailto:[189]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [35] [190]http://groups.google.com/d/msgid/ > > > [36] [191]http://40mail.gmail.com/ > > > [37] mailto:[192]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [38] mailto:[193]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [39] [194]https://github.com/lierdakil/ > > > [40] mailto:[195]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [41] [196]https://groups.google.com/ > > > [42] [197]http://40mail.gmail.com/ > > > [43] [198]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [44] mailto:[199]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [45] [200]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [46] [201]http://40mail.gmail.com/ > > > [47] mailto:[202]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [48] [203]https://groups.google.com/d/ > > > [49] mailto:[204]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [50] [205]https://groups.google.com/d/msgid/ > > > [51] [206]http://40mail.gmail.com/ > > > [52] mailto:[207]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [53] [208]https://github.com/lierdakil/pandoc-crossref/issues/47# > > > [54] mailto:[209]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm > > > [55] [210]https://groups.google.com/d/msgid/ > > > [56] [211]http://40mail.gmail.com/ > > > [57] [212]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [58] mailto:[213]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm > > > [59] [214]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [60] [215]http://40mail.gmail.com/ > > > [61] mailto:[216]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm > > > [62] [217] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > > [63] mailto:[218]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [64] [219]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [65] [220]http://40mail.gmail.com/ > > > [66] mailto:[221]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [67] [222] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/ > > > [68] mailto:[223]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [69] [224]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [70] [225]http://40mail.gmail.com/ > > > [71] mailto:[226]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [72] [227]https://groups.google.com/d/ > > > [73] mailto:[228]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [74] [229]https://groups.google.com/d/msgid/ > > > [75] [230]http://40mail.gmail.com/ > > > [76] mailto:[231]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [77] mailto:[232]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [78] mailto:[233]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [79] [234]https://github.com/ > > > [80] mailto:[235]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [81] [236]http://groups.google.com/ > > > [82] [237]http://40mail.gmail.com/ > > > [83] [238]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [84] mailto:[239]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [85] [240]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [86] [241]http://40mail.gmail.com/ > > > [87] mailto:[242]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [88] [243]http://groups.google.com/d/ > > > [89] mailto:[244]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [90] [245]http://groups.google.com/d/msgid/ > > > [91] [246]http://40mail.gmail.com/ > > > [92] mailto:[247]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [93] [248]https://github.com/lierdakil/pandoc-crossref/issues/47# > > > [94] mailto:[249]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm > > > [95] [250]https://groups.google.com/d/msgid/ > > > [96] [251]http://40mail.gmail.com/ > > > [97] [252]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [98] mailto:[253]pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm > > > [99] [254]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [100] [255]http://40mail.gmail.com/ > > > [101] mailto:[256] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [102] [257] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > > [103] mailto:[258]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [104] [259]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [105] [260]http://40mail.gmail.com/ > > > [106] mailto:[261]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [107] [262]https://groups.google.com/d/ > > > [108] mailto:[263]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [109] [264]https://groups.google.com/d/msgid/ > > > [110] [265]http://40mail.gmail.com/ > > > [111] mailto:[266]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [112] mailto:[267]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [113] [268]https://github.com/lierdakil/ > > > [114] mailto:[269] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [115] [270]https://groups.google.com/ > > > [116] [271]http://40mail.gmail.com/ > > > [117] [272]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [118] mailto:[273] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [119] [274]https://groups.google.com/d/msgid/pandoc-discuss/ > > > [120] [275]http://40mail.gmail.com/ > > > [121] mailto:[276] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [122] [277]https://groups.google.com/d/ > > > [123] mailto:[278] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [124] [279]https://groups.google.com/d/msgid/ > > > [125] [280]http://40mail.gmail.com/ > > > [126] mailto:[281]bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > > [127] [282]https://github.com/lierdakil/pandoc-crossref/issues/47# > > issuecomment-614404532 > > > [128] mailto:[283] > pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [129] [284]https://groups.google.com/d/msgid/ > > > [130] [285]http://40mail.gmail.com/ > > > [131] [286]https://github.com/lierdakil/pandoc-crossref/issues/47 > > > [132] mailto:[287] > pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [133] [288]https://groups.google.com/d/msgid/pandoc-discuss/ > > CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg% > 40mail.gmail.com? > > utm_medium=email&utm_source=footer > > > [134] mailto:[289] > pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [135] [290] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > pAK2e%40localhost > > > [136] mailto:[291] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [137] [292]https://groups.google.com/d/msgid/pandoc-discuss/ > > CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA% > 40mail.gmail.com? > > utm_medium=email&utm_source=footer > > > [138] mailto:[293] > pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [139] [294] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/ > > f55E9xQ%40localhost > > > [140] mailto:[295]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [141] [296]https://groups.google.com/d/msgid/pandoc-discuss/ > > CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ% > 40mail.gmail.com? > > utm_medium=email&utm_source=footer > > > [142] mailto:[297]pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [143] [298]https://groups.google.com/d/msgid/pandoc-discuss/ > > ZAddfXTclu2naUlX%40localhost > > > [144] mailto:[299]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [145] [300]https://groups.google.com/d/msgid/pandoc-discuss/ > > CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A% > 40mail.gmail.com? > > utm_medium=email&utm_source=footer > > > [146] mailto:[301]pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [147] [302]https://groups.google.com/d/msgid/pandoc-discuss/ > > ZAeOG4qBz9PPfadv%40localhost > > > [148] mailto:[303]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > [149] [304]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 [305]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To view this discussion on the web visit [306] > https://groups.google.com/d/ > > msgid/pandoc-discuss/ZAeSgddcCKa7EmDt%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 [307]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To view this discussion on the web visit [308] > https://groups.google.com/d/msgid > > /pandoc-discuss/ > > CAMwawgPuUvCg1TtGbqz4zsi6-2yJkcAtC27rsx6nNV6id_z6vw%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] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [6] http://github.com/ > > [7] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [8] http://groups.google.com/ > > [9] http://40mail.gmail.com/ > > [10] https://github.com/lierdakil/ > > [11] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [12] https://groups.google.com/d/msgid/ > > [13] http://40mail.gmail.com/ > > [14] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [15] http://groups.google.com/d/ > > [16] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [17] http://groups.google.com/d/msgid/ > > [18] http://40mail.gmail.com/ > > [19] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [20] https://github.com/lierdakil/pandoc-crossref/ > > [21] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [22] https://groups.google.com/d/msgid/ > > [23] http://40mail.gmail.com/ > > [24] https://github.com/lierdakil/pandoc-crossref/ > > [25] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [26] https://groups.google.com/d/msgid/ > > [27] http://40mail.gmail.com/ > > [28] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [29] https://groups.google.com/d/msgid/ > > [30] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [31] https://groups.google.com/d/msgid/ > > [32] http://40mail.gmail.com/ > > [33] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [34] http://groups.google.com/d/ > > [35] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [36] http://groups.google.com/d/msgid/ > > [37] http://40mail.gmail.com/ > > [38] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [39] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [40] https://github.com/lierdakil/ > > [41] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [42] https://groups.google.com/ > > [43] http://40mail.gmail.com/ > > [44] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [45] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [46] https://groups.google.com/d/msgid/pandoc-discuss/ > > [47] http://40mail.gmail.com/ > > [48] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [49] https://groups.google.com/d/ > > [50] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [51] https://groups.google.com/d/msgid/ > > [52] http://40mail.gmail.com/ > > [53] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [54] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [55] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [56] https://groups.google.com/d/msgid/ > > [57] http://40mail.gmail.com/ > > [58] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [59] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [60] https://groups.google.com/d/msgid/pandoc-discuss/ > > [61] http://40mail.gmail.com/ > > [62] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [63] https://groups.google.com/d/msgid/pandoc-discuss/ > > [64] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [65] https://groups.google.com/d/msgid/pandoc-discuss/ > > [66] http://40mail.gmail.com/ > > [67] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [68] https://groups.google.com/d/msgid/pandoc-discuss/ > > [69] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [70] https://groups.google.com/d/msgid/pandoc-discuss/ > > [71] http://40mail.gmail.com/ > > [72] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [73] http://groups.google.com/d/ > > [74] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [75] http://groups.google.com/d/msgid/ > > [76] http://40mail.gmail.com/ > > [77] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [78] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [79] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [80] https://github.com/ > > [81] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [82] http://groups.google.com/ > > [83] http://40mail.gmail.com/ > > [84] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [85] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [86] https://groups.google.com/d/msgid/pandoc-discuss/ > > [87] http://40mail.gmail.com/ > > [88] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [89] http://groups.google.com/d/ > > [90] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [91] http://groups.google.com/d/msgid/ > > [92] http://40mail.gmail.com/ > > [93] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [94] https://github.com/lierdakil/pandoc-crossref/issues/47# > > [95] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [96] https://groups.google.com/d/msgid/ > > [97] http://40mail.gmail.com/ > > [98] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [99] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [100] https://groups.google.com/d/msgid/pandoc-discuss/ > > [101] http://40mail.gmail.com/ > > [102] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [103] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > [104] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [105] https://groups.google.com/d/msgid/pandoc-discuss/ > > [106] http://40mail.gmail.com/ > > [107] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [108] https://groups.google.com/d/ > > [109] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [110] https://groups.google.com/d/msgid/ > > [111] http://40mail.gmail.com/ > > [112] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [113] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [114] https://github.com/lierdakil/ > > [115] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [116] https://groups.google.com/ > > [117] http://40mail.gmail.com/ > > [118] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [119] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [120] https://groups.google.com/d/msgid/pandoc-discuss/ > > [121] http://40mail.gmail.com/ > > [122] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [123] https://groups.google.com/d/ > > [124] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [125] https://groups.google.com/d/msgid/ > > [126] http://40mail.gmail.com/ > > [127] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [128] https://github.com/lierdakil/pandoc-crossref/issues/47# > > [129] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [130] https://groups.google.com/d/msgid/ > > [131] http://40mail.gmail.com/ > > [132] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [133] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [134] https://groups.google.com/d/msgid/pandoc-discuss/ > > [135] http://40mail.gmail.com/ > > [136] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [137] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > [138] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [139] https://groups.google.com/d/msgid/pandoc-discuss/ > > [140] http://40mail.gmail.com/ > > [141] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [142] https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/ > > [143] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [144] https://groups.google.com/d/msgid/pandoc-discuss/ > > [145] http://40mail.gmail.com/ > > [146] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [147] https://groups.google.com/d/msgid/pandoc-discuss/ > > [148] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [149] https://groups.google.com/d/msgid/pandoc-discuss/ > > [150] http://40mail.gmail.com/ > > [151] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [152] https://groups.google.com/d/ > > [153] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [154] https://groups.google.com/d/msgid > > [155] http://40mail.gmail.com/ > > [156] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [157] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [158] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [159] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [160] http://github.com/ > > [161] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [162] http://groups.google.com/ > > [163] http://40mail.gmail.com/ > > [164] https://github.com/lierdakil/pandoc-crossref/ > > [165] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [166] https://groups.google.com/d/msgid/ > > [167] http://40mail.gmail.com/ > > [168] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [169] http://groups.google.com/d/ > > [170] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [171] http://groups.google.com/d/msgid/ > > [172] http://40mail.gmail.com/ > > [173] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [174] https://github.com/lierdakil/pandoc-crossref/issues/47# > > [175] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [176] https://groups.google.com/d/msgid/ > > [177] http://40mail.gmail.com/ > > [178] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [179] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [180] https://groups.google.com/d/msgid/pandoc-discuss/ > > [181] http://40mail.gmail.com/ > > [182] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [183] https://groups.google.com/d/msgid/pandoc-discuss/ > > [184] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [185] https://groups.google.com/d/msgid/pandoc-discuss/ > > [186] http://40mail.gmail.com/ > > [187] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [188] http://groups.google.com/d/ > > [189] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [190] http://groups.google.com/d/msgid/ > > [191] http://40mail.gmail.com/ > > [192] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [193] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [194] https://github.com/lierdakil/ > > [195] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [196] https://groups.google.com/ > > [197] http://40mail.gmail.com/ > > [198] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [199] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [200] https://groups.google.com/d/msgid/pandoc-discuss/ > > [201] http://40mail.gmail.com/ > > [202] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [203] https://groups.google.com/d/ > > [204] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [205] https://groups.google.com/d/msgid/ > > [206] http://40mail.gmail.com/ > > [207] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [208] https://github.com/lierdakil/pandoc-crossref/issues/47# > > [209] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [210] https://groups.google.com/d/msgid/ > > [211] http://40mail.gmail.com/ > > [212] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [213] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [214] https://groups.google.com/d/msgid/pandoc-discuss/ > > [215] http://40mail.gmail.com/ > > [216] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [217] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > [218] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [219] https://groups.google.com/d/msgid/pandoc-discuss/ > > [220] http://40mail.gmail.com/ > > [221] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [222] https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/ > > [223] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [224] https://groups.google.com/d/msgid/pandoc-discuss/ > > [225] http://40mail.gmail.com/ > > [226] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [227] https://groups.google.com/d/ > > [228] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [229] https://groups.google.com/d/msgid/ > > [230] http://40mail.gmail.com/ > > [231] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [232] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [233] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [234] https://github.com/ > > [235] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [236] http://groups.google.com/ > > [237] http://40mail.gmail.com/ > > [238] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [239] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [240] https://groups.google.com/d/msgid/pandoc-discuss/ > > [241] http://40mail.gmail.com/ > > [242] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [243] http://groups.google.com/d/ > > [244] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [245] http://groups.google.com/d/msgid/ > > [246] http://40mail.gmail.com/ > > [247] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [248] https://github.com/lierdakil/pandoc-crossref/issues/47# > > [249] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [250] https://groups.google.com/d/msgid/ > > [251] http://40mail.gmail.com/ > > [252] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [253] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [254] https://groups.google.com/d/msgid/pandoc-discuss/ > > [255] http://40mail.gmail.com/ > > [256] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [257] https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/ > > [258] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [259] https://groups.google.com/d/msgid/pandoc-discuss/ > > [260] http://40mail.gmail.com/ > > [261] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [262] https://groups.google.com/d/ > > [263] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [264] https://groups.google.com/d/msgid/ > > [265] http://40mail.gmail.com/ > > [266] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [267] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [268] https://github.com/lierdakil/ > > [269] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [270] https://groups.google.com/ > > [271] http://40mail.gmail.com/ > > [272] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [273] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [274] https://groups.google.com/d/msgid/pandoc-discuss/ > > [275] http://40mail.gmail.com/ > > [276] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [277] https://groups.google.com/d/ > > [278] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [279] https://groups.google.com/d/msgid/ > > [280] http://40mail.gmail.com/ > > [281] mailto:bastien.dumont-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org > > [282] > https://github.com/lierdakil/pandoc-crossref/issues/47#issuecomment-614404532 > > [283] mailto:pandoc-discuss%252525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [284] https://groups.google.com/d/msgid/ > > [285] http://40mail.gmail.com/ > > [286] https://github.com/lierdakil/pandoc-crossref/issues/47 > > [287] mailto:pandoc-discuss%252525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [288] > https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPTeNSdJ7FDbc9tmw8ax06K7n_uGxvB-mCn2fvBzdD%3DUg%40mail.gmail.com?utm_medium=email&utm_source=footer > > [289] mailto:pandoc-discuss%252525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [290] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcA4dThsf/pAK2e%40localhost > > [291] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [292] > https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgNJcw9d-aMSPFStx%2BwU__GrsDVhhNrARCLf4CdHNiGCWA%40mail.gmail.com?utm_medium=email&utm_source=footer > > [293] mailto:pandoc-discuss%2525252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [294] > https://groups.google.com/d/msgid/pandoc-discuss/ZAcdDn%2Bj/f55E9xQ%40localhost > > [295] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [296] > https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgMDb2ZF9i8T5sxeFqrnf3RRh%2BthSJXyxPsufFqPC4czBQ%40mail.gmail.com?utm_medium=email&utm_source=footer > > [297] mailto:pandoc-discuss%25252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [298] > https://groups.google.com/d/msgid/pandoc-discuss/ZAddfXTclu2naUlX%40localhost > > [299] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [300] > https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPQN7Jv34tv%2BkioNYJO-HJ4nhwMco%2B7BXQCLOEDHDD39A%40mail.gmail.com?utm_medium=email&utm_source=footer > > [301] mailto:pandoc-discuss%252Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [302] > https://groups.google.com/d/msgid/pandoc-discuss/ZAeOG4qBz9PPfadv%40localhost > > [303] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [304] > https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPtfX8%2Bqy4q2nx7%2BDL-kWhX82QnWh6BQ8CHPyHGZ3uuzw%40mail.gmail.com?utm_medium=email&utm_source=footer > > [305] mailto:pandoc-discuss%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [306] > https://groups.google.com/d/msgid/pandoc-discuss/ZAeSgddcCKa7EmDt%40localhost > > [307] mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > [308] > https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgPuUvCg1TtGbqz4zsi6-2yJkcAtC27rsx6nNV6id_z6vw%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/ZAefHXsdFwwNlDAf%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 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/CAMwawgNG19AHbNAvDmSagOcUF4aJr4ua6Ypk5j0K9meL6vfgCQ%40mail.gmail.com.