John MacFarlane
John MacFarlane
The approach in #250 would allow adding an attribute to a definition list *item* (including both the term and the definition): ``` :{.class} term definition ``` An attribute could be...
@tarleb This was kind of an experiment, and I'm still not sure what to think. There would be some advantages and some disadvantages. Another possibility would be a completely home-grown...
I have some of the same concerns. Once the code base became entangled with relude's assumptions, it wouldn't be easy to extricate it. Of course, an alternative to adopting relude...
Here's a list (possibly not complete) of modules that currently use partial functions: ``` src/Text/Pandoc/Readers/Markdown.hs src/Text/Pandoc/Readers/HTML.hs src/Text/Pandoc/Readers/Docx.hs src/Text/Pandoc/Readers/DocBook.hs src/Text/Pandoc/Readers/Docx/Lists.hs src/Text/Pandoc/Readers/Textile.hs src/Text/Pandoc/Readers/RST.hs src/Text/Pandoc/Readers/Haddock.hs src/Text/Pandoc/Readers/Txt2Tags.hs src/Text/Pandoc/Readers/Vimwiki.hs src/Text/Pandoc/Readers/LaTeX/SIunitx.hs src/Text/Pandoc/Readers/LaTeX/Citation.hs src/Text/Pandoc/Readers/HTML/Table.hs src/Text/Pandoc/Citeproc/BibTeX.hs src/Text/Pandoc/Readers/Org/Blocks.hs src/Text/Pandoc/Citeproc.hs...
The one drawback I see is that it might be a little hard to find the documentation for our custom prelude. (It is an internal module and wouldn't appear in...
That's a good point. I suppose the prelude could be published as a module of the core package, though, and used in the others. But maybe this is all more...
Excellent! What errors is `make leakcheck` failing with? We routinely run it as part of CI and it doesn't fail there. EDIT: Ah, I see the failures in CI. But...
Do you have a suggestion to make about how the spec might be altered to deal with this case (without introducing too much complexity)?
Ideally these wrappers should define a function that can be imported and used in other code. (Perhaps in a long-running process.) The rb and py wrapper examples do that; your...
Please read https://spec.commonmark.org/0.31.2/#html-blocks If these conditions are not met, the element will be considered inline and will be wrapped in p tags in HTML output. > Currently, standalone Markdown image...