John MacFarlane
John MacFarlane
Here's the code in citeproc that blocks sorting of citation items with prefixes/suffixes: https://github.com/jgm/citeproc/blob/master/src/Citeproc/Eval.hs#L215-L239 We'd have to revert this for this PR to make much sense. This would mean that...
Agreed, it's an important issue. It also comes up for materials distributed in connection with courses. I'm motivated to make it easier to produce accessible PDFs using pandoc, but I...
Relevant [pandoc-discuss thread](https://groups.google.com/d/msg/pandoc-discuss/2lO357t5yQg/n5XiWomoAQAJ)
I've tried using accessibility-meta.sty but without any success.
I think it would be possible (and not too hard) to add these tags using a lua filter. I don't see anything that would require changes to the writer. For...
@u-fischer thanks for the note. Does it work to use etoolbox's `\apptocmd` and `\pretocmd` to attach these things? ```latex \pretocmd{\section}{\tagstructbegin{tag=H}\tagmcbegin{tag=H}}{}{} \apptocmd{\section}{\tagcmdend\tagstructend}{}{} ``` This could go in the preamble and then...
The project has been semi-unmaintained for the last 10 years or so, so yes, there's a lot of out of date stuff. Happy to have it cleaned up a bit.
We don't need the IE6 support.
Before making this change, I'd like to have a clearer idea of how a wasm typst plugin could make productive use of this library. After all, this library was designed...
One more thing you could try that wouldn't require changes here. In https://github.com/haskell-wasm/pandoc/commit/336228bb8d5e9bf35750cfe6b546ffb4bcd86c15 they use a special modified version of xml-conduit (see cabal.project) that apparently compiles with wasm. You could...