John MacFarlane
John MacFarlane
> I say so because if it didn’t treat the colon as part of the page number, imho it should put out in the MWE from my last comment: [3]...
One note: the default de-DE locale for citeproc has `punctuation-in-quote=false`, and this default is not overridden in your Auniversitat-freiburg-geschichte csl file. So punctuation moving would not be activated in this...
You shouldn't hope for exact duplication of what biblatex does. But I'd still like to think more about how to avoid the extra dot in `Str ".",Str "\8220."`.
Actually I see now that the issue comes up in citeproc itself, not in anything pandoc does. The period is added by citeproc. So I'll transfer this. We should be...
Very strange. Have you tried building in the same environment on non-armv7 machines? +++ Jens Petersen [Feb 04 16 22:08 ]: > Not sure what is a fault I note...
Can you try building jgm/cmark (the C library cmark-hs wraps) on your armv7 platform? You'd just need cmake, and python3 to run the tests. It should be a straightforward clone,...
OK, so that suggests to me that the cmake build procedure is doing something that needs to be done on armv7, and that isn't being done by the simple build...
I think what's happening is that the table extension is kicking in, because of the `|`. I think the current behavior of this extension is to regress and parse the...
The relevant part of the source is in commonmark-extensions, src/Commonmark/Extensions/PipeTable.hs, lines 176-193.
You may be able to work around this by moving the `pipeTableSpec` *after* `defaultSyntaxSpec`, i.e. ```hs allTheGfmExtensionsExceptPipeTable defaultSyntaxSpec pipeTableSpec ```