├── .cirrus.yml ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── benchmark.yml │ ├── ci.yml │ ├── commit-validation-pr.yml │ ├── commit-validation.yml │ ├── docx-validation.yaml │ ├── format-validation.yml │ ├── lint.yml.bkp │ ├── nightly.yml │ └── release-candidate.yml ├── .gitignore ├── .hlint.yaml ├── .mailmap ├── .stylish-haskell.yaml ├── AUTHORS.md ├── BUGS ├── CITATION.cff ├── CONTRIBUTING.md ├── COPYING.md ├── COPYRIGHT ├── INSTALL.md ├── MANUAL.txt ├── Makefile ├── README.md ├── README.template ├── RELEASE-CHECKLIST-TEMPLATE.org ├── SECURITY.md ├── benchmark └── benchmark-pandoc.hs ├── cabal.project ├── changelog.md ├── citeproc └── biblatex-localization │ ├── .strings │ ├── UKenglish.lbx.strings │ ├── USenglish.lbx.strings │ ├── american.lbx.strings │ ├── australian.lbx.strings │ ├── austrian.lbx.strings │ ├── brazil.lbx.strings │ ├── brazilian.lbx.strings │ ├── british.lbx.strings │ ├── bulgarian.lbx.strings │ ├── canadian.lbx.strings │ ├── catalan.lbx.strings │ ├── croatian.lbx.strings │ ├── czech.lbx.strings │ ├── danish.lbx.strings │ ├── dutch.lbx.strings │ ├── english.lbx.strings │ ├── estonian.lbx.strings │ ├── finnish.lbx.strings │ ├── french.lbx.strings │ ├── galician.lbx.strings │ ├── german.lbx.strings │ ├── greek.lbx.strings │ ├── hungarian.lbx.strings │ ├── icelandic.lbx.strings │ ├── italian.lbx.strings │ ├── latvian.lbx.strings │ ├── lithuanian.lbx.strings │ ├── magyar.lbx.strings │ ├── naustrian.lbx.strings │ ├── newzealand.lbx.strings │ ├── ngerman.lbx.strings │ ├── norsk.lbx.strings │ ├── nswissgerman.lbx.strings │ ├── nynorsk.lbx.strings │ ├── polish.lbx.strings │ ├── portuges.lbx.strings │ ├── portuguese.lbx.strings │ ├── russian.lbx.strings │ ├── serbian.lbx.strings │ ├── serbianc.lbx.strings │ ├── slovak.lbx.strings │ ├── slovene.lbx.strings │ ├── slovenian.lbx.strings │ ├── spanish.lbx.strings │ ├── swedish.lbx.strings │ ├── swissgerman.lbx.strings │ ├── turkish.lbx.strings │ └── ukrainian.lbx.strings ├── data ├── abbreviations ├── bash_completion.tpl ├── creole.lua ├── default.csl ├── docbook-entities.txt ├── docx │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ ├── core.xml │ │ └── custom.xml │ └── word │ │ ├── _rels │ │ ├── document.xml.rels │ │ └── footnotes.xml.rels │ │ ├── comments.xml │ │ ├── document.xml │ │ ├── fontTable.xml │ │ ├── footnotes.xml │ │ ├── numbering.xml │ │ ├── settings.xml │ │ ├── styles.xml │ │ ├── theme │ │ └── theme1.xml │ │ └── webSettings.xml ├── dzslides │ └── template.html ├── epub.css ├── init.lua ├── odt │ ├── META-INF │ │ └── manifest.xml │ ├── content.xml │ ├── manifest.rdf │ ├── meta.xml │ ├── mimetype │ └── styles.xml ├── pptx │ ├── [Content_Types].xml │ ├── _rels │ │ └── .rels │ ├── docProps │ │ ├── app.xml │ │ └── core.xml │ └── ppt │ │ ├── _rels │ │ └── presentation.xml.rels │ │ ├── notesMasters │ │ ├── _rels │ │ │ └── notesMaster1.xml.rels │ │ └── notesMaster1.xml │ │ ├── notesSlides │ │ ├── _rels │ │ │ ├── notesSlide1.xml.rels │ │ │ └── notesSlide2.xml.rels │ │ ├── notesSlide1.xml │ │ └── notesSlide2.xml │ │ ├── presProps.xml │ │ ├── presentation.xml │ │ ├── slideLayouts │ │ ├── _rels │ │ │ ├── slideLayout1.xml.rels │ │ │ ├── slideLayout10.xml.rels │ │ │ ├── slideLayout11.xml.rels │ │ │ ├── slideLayout2.xml.rels │ │ │ ├── slideLayout3.xml.rels │ │ │ ├── slideLayout4.xml.rels │ │ │ ├── slideLayout5.xml.rels │ │ │ ├── slideLayout6.xml.rels │ │ │ ├── slideLayout7.xml.rels │ │ │ ├── slideLayout8.xml.rels │ │ │ └── slideLayout9.xml.rels │ │ ├── slideLayout1.xml │ │ ├── slideLayout10.xml │ │ ├── slideLayout11.xml │ │ ├── slideLayout2.xml │ │ ├── slideLayout3.xml │ │ ├── slideLayout4.xml │ │ ├── slideLayout5.xml │ │ ├── slideLayout6.xml │ │ ├── slideLayout7.xml │ │ ├── slideLayout8.xml │ │ └── slideLayout9.xml │ │ ├── slideMasters │ │ ├── _rels │ │ │ └── slideMaster1.xml.rels │ │ └── slideMaster1.xml │ │ ├── slides │ │ ├── _rels │ │ │ ├── slide1.xml.rels │ │ │ ├── slide2.xml.rels │ │ │ ├── slide3.xml.rels │ │ │ └── slide4.xml.rels │ │ ├── slide1.xml │ │ ├── slide2.xml │ │ ├── slide3.xml │ │ └── slide4.xml │ │ ├── tableStyles.xml │ │ ├── theme │ │ ├── theme1.xml │ │ └── theme2.xml │ │ └── viewProps.xml ├── templates │ ├── affiliations.jats │ ├── after-header-includes.latex │ ├── article.jats_publishing │ ├── common.latex │ ├── default.ansi │ ├── default.asciidoc │ ├── default.bbcode │ ├── default.beamer │ ├── default.biblatex │ ├── default.bibtex │ ├── default.chunkedhtml │ ├── default.commonmark │ ├── default.context │ ├── default.djot │ ├── default.docbook4 │ ├── default.docbook5 │ ├── default.dokuwiki │ ├── default.dzslides │ ├── default.epub2 │ ├── default.epub3 │ ├── default.haddock │ ├── default.html4 │ ├── default.html5 │ ├── default.icml │ ├── default.jats_archiving │ ├── default.jats_articleauthoring │ ├── default.jats_publishing │ ├── default.jira │ ├── default.latex │ ├── default.man │ ├── default.markdown │ ├── default.markua │ ├── default.mediawiki │ ├── default.ms │ ├── default.muse │ ├── default.opendocument │ ├── default.openxml │ ├── default.opml │ ├── default.org │ ├── default.plain │ ├── default.revealjs │ ├── default.rst │ ├── default.rtf │ ├── default.s5 │ ├── default.slideous │ ├── default.slidy │ ├── default.tei │ ├── default.texinfo │ ├── default.textile │ ├── default.typst │ ├── default.vimdoc │ ├── default.xwiki │ ├── default.zimwiki │ ├── font-settings.latex │ ├── fonts.latex │ ├── hypersetup.latex │ ├── passoptions.latex │ ├── styles.citations.html │ ├── styles.html │ └── template.typst └── translations │ ├── af.yaml │ ├── alt.yaml │ ├── am.yaml │ ├── ar.yaml │ ├── as.yaml │ ├── ast.yaml │ ├── az.yaml │ ├── be.yaml │ ├── bg.yaml │ ├── bn.yaml │ ├── bo.yaml │ ├── br.yaml │ ├── bs.yaml │ ├── bua.yaml │ ├── ca.yaml │ ├── ckb-Arab.yaml │ ├── ckb-Latn.yaml │ ├── cs.yaml │ ├── cu.yaml │ ├── cy.yaml │ ├── cz.yaml │ ├── da.yaml │ ├── de.yaml │ ├── dsb.yaml │ ├── el.yaml │ ├── en.yaml │ ├── eo.yaml │ ├── es-ES.yaml │ ├── es-MX.yaml │ ├── es.yaml │ ├── et.yaml │ ├── eu.yaml │ ├── fa.yaml │ ├── fi.yaml │ ├── fil.yaml │ ├── fr.yaml │ ├── fur.yaml │ ├── ga.yaml │ ├── gd.yaml │ ├── gl.yaml │ ├── grc.yaml │ ├── gu.yaml │ ├── ha.yaml │ ├── he.yaml │ ├── hi.yaml │ ├── hr.yaml │ ├── hsb.yaml │ ├── hu.yaml │ ├── hy.yaml │ ├── ia.yaml │ ├── id.yaml │ ├── is.yaml │ ├── it.yaml │ ├── ja.yaml │ ├── ka.yaml │ ├── km.yaml │ ├── kmr-Arab.yaml │ ├── kmr-Latn.yaml │ ├── kn.yaml │ ├── ko.yaml │ ├── la.yaml │ ├── lb.yaml │ ├── lo.yaml │ ├── lt.yaml │ ├── lv.yaml │ ├── mk.yaml │ ├── ml.yaml │ ├── mn.yaml │ ├── mr.yaml │ ├── ms.yaml │ ├── nb.yaml │ ├── nko.yaml │ ├── nl.yaml │ ├── nn.yaml │ ├── no.yaml │ ├── oc.yaml │ ├── or.yaml │ ├── pa.yaml │ ├── pl.yaml │ ├── pms.yaml │ ├── pt-BR.yaml │ ├── pt-PT.yaml │ ├── pt.yaml │ ├── rm.yaml │ ├── ro.yaml │ ├── ru.yaml │ ├── se.yaml │ ├── si.yaml │ ├── sk.yaml │ ├── sl.yaml │ ├── sq.yaml │ ├── sr-Cyrl.yaml │ ├── sr-Latn.yaml │ ├── sr.yaml │ ├── sv.yaml │ ├── ta.yaml │ ├── te.yaml │ ├── th.yaml │ ├── tk.yaml │ ├── tr.yaml │ ├── ua.yaml │ ├── ug.yaml │ ├── uk.yaml │ ├── ur.yaml │ ├── vi.yaml │ ├── zh-Hans.yaml │ └── zh-Hant.yaml ├── doc ├── custom-readers.md ├── custom-writers.md ├── customizing-pandoc.md ├── epub.md ├── extras.md ├── faqs.md ├── filters.md ├── getting-started.md ├── jats.md ├── libraries.md ├── lua-filters.md ├── nix.md ├── org.md ├── pandoc-lua.md ├── pandoc-server.md ├── press.md ├── short-guide-to-pandocs-sources.md ├── typst-property-output.md ├── using-the-pandoc-api.md └── xml.md ├── flake.lock ├── flake.nix ├── hie.yaml ├── linux ├── control.in └── make_artifacts.sh ├── macos ├── Makefile ├── distribution.xml.in ├── make_macos_release.sh └── uninstall-pandoc.pl ├── man ├── manfilter.lua ├── pandoc.1.after └── pandoc.1.before ├── pandoc-cli ├── COPYING.md ├── README.md ├── lua │ └── PandocCLI │ │ └── Lua.hs ├── man │ ├── pandoc-lua.1 │ ├── pandoc-server.1 │ └── pandoc.1 ├── no-lua │ └── PandocCLI │ │ └── Lua.hs ├── no-server │ └── PandocCLI │ │ └── Server.hs ├── pandoc-cli.cabal ├── server │ └── PandocCLI │ │ └── Server.hs └── src │ └── pandoc.hs ├── pandoc-lua-engine ├── COPYING.md ├── README.md ├── pandoc-lua-engine.cabal ├── src │ └── Text │ │ └── Pandoc │ │ ├── Lua.hs │ │ └── Lua │ │ ├── Custom.hs │ │ ├── Engine.hs │ │ ├── Filter.hs │ │ ├── Global.hs │ │ ├── Init.hs │ │ ├── Marshal │ │ ├── Chunks.hs │ │ ├── CommonState.hs │ │ ├── Context.hs │ │ ├── Format.hs │ │ ├── ImageSize.hs │ │ ├── LogMessage.hs │ │ ├── PandocError.hs │ │ ├── ReaderOptions.hs │ │ ├── Reference.hs │ │ ├── Sources.hs │ │ ├── Template.hs │ │ └── WriterOptions.hs │ │ ├── Module.hs │ │ ├── Module │ │ ├── CLI.hs │ │ ├── Format.hs │ │ ├── Image.hs │ │ ├── JSON.hs │ │ ├── Log.hs │ │ ├── MediaBag.hs │ │ ├── Pandoc.hs │ │ ├── Path.hs │ │ ├── Scaffolding.hs │ │ ├── Structure.hs │ │ ├── System.hs │ │ ├── Template.hs │ │ ├── Text.hs │ │ ├── Types.hs │ │ └── Utils.hs │ │ ├── Orphans.hs │ │ ├── PandocLua.hs │ │ ├── Run.hs │ │ ├── SourcePos.hs │ │ └── Writer │ │ ├── Classic.hs │ │ └── Scaffolding.hs └── test │ ├── Tests │ ├── Lua.hs │ └── Lua │ │ ├── Module.hs │ │ ├── Reader.hs │ │ └── Writer.hs │ ├── bytestring-reader.lua │ ├── bytestring.bin │ ├── bytestring.lua │ ├── extensions.lua │ ├── lua │ ├── attr-test.lua │ ├── block-count.lua │ ├── blocks-filter.lua │ ├── hello-world-doc.lua │ ├── implicit-doc-filter.lua │ ├── inlines-filter.lua │ ├── markdown-reader.lua │ ├── math.lua │ ├── meta.lua │ ├── metatable-catch-all.lua │ ├── module │ │ ├── globals.lua │ │ ├── include.tex │ │ ├── pandoc-format.lua │ │ ├── pandoc-image.lua │ │ ├── pandoc-json.lua │ │ ├── pandoc-list.lua │ │ ├── pandoc-log.lua │ │ ├── pandoc-mediabag.lua │ │ ├── pandoc-path.lua │ │ ├── pandoc-structure.lua │ │ ├── pandoc-template.lua │ │ ├── pandoc-text.lua │ │ ├── pandoc-types.lua │ │ ├── pandoc-utils.lua │ │ ├── pandoc.lua │ │ ├── partial.test │ │ ├── sample.epub │ │ ├── sample.svg │ │ └── tiny.epub │ ├── plain-to-para.lua │ ├── require-file.lua │ ├── script-name.lua │ ├── single-to-double-quoted.lua │ ├── smallcaps-title.lua │ ├── smart-constructors.lua │ ├── strmacro.lua │ ├── undiv.lua │ └── uppercase-header.lua │ ├── sample.lua │ ├── tables.custom │ ├── tables.native │ ├── test-pandoc-lua-engine.hs │ ├── testsuite.native │ ├── writer-template.lua │ ├── writer-template.out.txt │ └── writer.custom ├── pandoc-server ├── COPYING.md ├── README.md ├── pandoc-server.cabal └── src │ └── Text │ └── Pandoc │ └── Server.hs ├── pandoc.cabal ├── release.nix ├── shell.nix ├── src └── Text │ ├── Pandoc.hs │ └── Pandoc │ ├── App.hs │ ├── App │ ├── CommandLineOptions.hs │ ├── Input.hs │ ├── Opt.hs │ └── OutputSettings.hs │ ├── Asciify.hs │ ├── CSS.hs │ ├── CSV.hs │ ├── Char.hs │ ├── Chunks.hs │ ├── Citeproc.hs │ ├── Citeproc │ ├── BibTeX.hs │ ├── CslJson.hs │ ├── Data.hs │ ├── Locator.hs │ ├── MetaValue.hs │ ├── Name.hs │ └── Util.hs │ ├── Class.hs │ ├── Class │ ├── CommonState.hs │ ├── IO.hs │ ├── PandocIO.hs │ ├── PandocMonad.hs │ ├── PandocPure.hs │ └── Sandbox.hs │ ├── Data.hs │ ├── Data │ └── BakedIn.hs │ ├── Emoji.hs │ ├── Error.hs │ ├── Extensions.hs │ ├── Filter.hs │ ├── Filter │ ├── Environment.hs │ └── JSON.hs │ ├── Format.hs │ ├── Highlighting.hs │ ├── Image.hs │ ├── ImageSize.hs │ ├── Logging.hs │ ├── MIME.hs │ ├── MediaBag.hs │ ├── Options.hs │ ├── PDF.hs │ ├── Parsing.hs │ ├── Parsing │ ├── Capabilities.hs │ ├── Citations.hs │ ├── Future.hs │ ├── General.hs │ ├── GridTable.hs │ ├── Lists.hs │ ├── Math.hs │ ├── Smart.hs │ └── State.hs │ ├── Process.hs │ ├── Readers.hs │ ├── Readers │ ├── AsciiDoc.hs │ ├── BibTeX.hs │ ├── CSV.hs │ ├── CommonMark.hs │ ├── Creole.hs │ ├── CslJson.hs │ ├── Djot.hs │ ├── DocBook.hs │ ├── Docx.hs │ ├── Docx │ │ ├── Combine.hs │ │ ├── Fields.hs │ │ ├── Lists.hs │ │ ├── Parse.hs │ │ ├── Parse │ │ │ └── Styles.hs │ │ ├── Symbols.hs │ │ └── Util.hs │ ├── DokuWiki.hs │ ├── EPUB.hs │ ├── EndNote.hs │ ├── FB2.hs │ ├── HTML.hs │ ├── HTML │ │ ├── Parsing.hs │ │ ├── Table.hs │ │ ├── TagCategories.hs │ │ └── Types.hs │ ├── Haddock.hs │ ├── Ipynb.hs │ ├── JATS.hs │ ├── Jira.hs │ ├── LaTeX.hs │ ├── LaTeX │ │ ├── Citation.hs │ │ ├── Inline.hs │ │ ├── Lang.hs │ │ ├── Macro.hs │ │ ├── Math.hs │ │ ├── Parsing.hs │ │ ├── SIunitx.hs │ │ └── Table.hs │ ├── Man.hs │ ├── Markdown.hs │ ├── Mdoc.hs │ ├── Mdoc │ │ ├── Lex.hs │ │ ├── Macros.hs │ │ └── Standards.hs │ ├── MediaWiki.hs │ ├── Metadata.hs │ ├── Muse.hs │ ├── Native.hs │ ├── ODT.hs │ ├── ODT │ │ ├── Arrows │ │ │ ├── State.hs │ │ │ └── Utils.hs │ │ ├── Base.hs │ │ ├── ContentReader.hs │ │ ├── Generic │ │ │ ├── Fallible.hs │ │ │ ├── Namespaces.hs │ │ │ ├── SetMap.hs │ │ │ ├── Utils.hs │ │ │ └── XMLConverter.hs │ │ ├── Namespaces.hs │ │ └── StyleReader.hs │ ├── OOXML │ │ └── Shared.hs │ ├── OPML.hs │ ├── Org.hs │ ├── Org │ │ ├── BlockStarts.hs │ │ ├── Blocks.hs │ │ ├── DocumentTree.hs │ │ ├── ExportSettings.hs │ │ ├── Inlines.hs │ │ ├── Meta.hs │ │ ├── ParserState.hs │ │ ├── Parsing.hs │ │ └── Shared.hs │ ├── Pod.hs │ ├── Pptx.hs │ ├── Pptx │ │ ├── Parse.hs │ │ ├── Shapes.hs │ │ ├── Slides.hs │ │ └── SmartArt.hs │ ├── RIS.hs │ ├── RST.hs │ ├── RTF.hs │ ├── Roff.hs │ ├── Roff │ │ └── Escape.hs │ ├── TWiki.hs │ ├── Textile.hs │ ├── TikiWiki.hs │ ├── Txt2Tags.hs │ ├── Typst.hs │ ├── Typst │ │ ├── Math.hs │ │ └── Parsing.hs │ ├── Vimwiki.hs │ ├── XML.hs │ ├── Xlsx.hs │ └── Xlsx │ │ ├── Cells.hs │ │ ├── Parse.hs │ │ └── Sheets.hs │ ├── RoffChar.hs │ ├── Scripting.hs │ ├── SelfContained.hs │ ├── Shared.hs │ ├── Slides.hs │ ├── Sources.hs │ ├── TeX.hs │ ├── Templates.hs │ ├── Transforms.hs │ ├── Translations.hs │ ├── Translations │ └── Types.hs │ ├── URI.hs │ ├── UTF8.hs │ ├── UUID.hs │ ├── Version.hs │ ├── Writers.hs │ ├── Writers │ ├── ANSI.hs │ ├── AnnotatedTable.hs │ ├── AsciiDoc.hs │ ├── BBCode.hs │ ├── BibTeX.hs │ ├── Blaze.hs │ ├── ChunkedHTML.hs │ ├── CommonMark.hs │ ├── ConTeXt.hs │ ├── CslJson.hs │ ├── Djot.hs │ ├── DocBook.hs │ ├── Docx.hs │ ├── Docx │ │ ├── OpenXML.hs │ │ ├── StyleMap.hs │ │ ├── Table.hs │ │ └── Types.hs │ ├── DokuWiki.hs │ ├── EPUB.hs │ ├── FB2.hs │ ├── GridTable.hs │ ├── HTML.hs │ ├── Haddock.hs │ ├── ICML.hs │ ├── Ipynb.hs │ ├── JATS.hs │ ├── JATS │ │ ├── References.hs │ │ ├── Table.hs │ │ └── Types.hs │ ├── Jira.hs │ ├── LaTeX.hs │ ├── LaTeX │ │ ├── Caption.hs │ │ ├── Citation.hs │ │ ├── Lang.hs │ │ ├── Notes.hs │ │ ├── Table.hs │ │ ├── Types.hs │ │ └── Util.hs │ ├── Man.hs │ ├── Markdown.hs │ ├── Markdown │ │ ├── Inline.hs │ │ ├── Table.hs │ │ └── Types.hs │ ├── Math.hs │ ├── MediaWiki.hs │ ├── Ms.hs │ ├── Muse.hs │ ├── Native.hs │ ├── ODT.hs │ ├── OOXML.hs │ ├── OPML.hs │ ├── OpenDocument.hs │ ├── Org.hs │ ├── Powerpoint.hs │ ├── Powerpoint │ │ ├── Output.hs │ │ └── Presentation.hs │ ├── RST.hs │ ├── RTF.hs │ ├── Roff.hs │ ├── Shared.hs │ ├── TEI.hs │ ├── Texinfo.hs │ ├── Textile.hs │ ├── Typst.hs │ ├── Vimdoc.hs │ ├── XML.hs │ ├── XWiki.hs │ └── ZimWiki.hs │ ├── XML.hs │ └── XMLFormat.hs ├── stack.yaml ├── test ├── Tests │ ├── Command.hs │ ├── Helpers.hs │ ├── MediaBag.hs │ ├── Old.hs │ ├── Readers │ │ ├── Creole.hs │ │ ├── Docx.hs │ │ ├── DokuWiki.hs │ │ ├── EPUB.hs │ │ ├── FB2.hs │ │ ├── HTML.hs │ │ ├── JATS.hs │ │ ├── Jira.hs │ │ ├── LaTeX.hs │ │ ├── Man.hs │ │ ├── Markdown.hs │ │ ├── Mdoc.hs │ │ ├── Muse.hs │ │ ├── ODT.hs │ │ ├── Org.hs │ │ ├── Org │ │ │ ├── Block.hs │ │ │ ├── Block │ │ │ │ ├── CodeBlock.hs │ │ │ │ ├── Figure.hs │ │ │ │ ├── Header.hs │ │ │ │ ├── List.hs │ │ │ │ └── Table.hs │ │ │ ├── Directive.hs │ │ │ ├── Inline.hs │ │ │ ├── Inline │ │ │ │ ├── Citation.hs │ │ │ │ ├── Note.hs │ │ │ │ └── Smart.hs │ │ │ ├── Meta.hs │ │ │ └── Shared.hs │ │ ├── Pod.hs │ │ ├── Pptx.hs │ │ ├── RST.hs │ │ ├── RTF.hs │ │ ├── Txt2Tags.hs │ │ └── Xlsx.hs │ ├── Shared.hs │ ├── Writers │ │ ├── AnnotatedTable.hs │ │ ├── AsciiDoc.hs │ │ ├── BBCode.hs │ │ ├── ConTeXt.hs │ │ ├── DocBook.hs │ │ ├── Docx.hs │ │ ├── FB2.hs │ │ ├── HTML.hs │ │ ├── JATS.hs │ │ ├── Jira.hs │ │ ├── LaTeX.hs │ │ ├── Markdown.hs │ │ ├── Markua.hs │ │ ├── Ms.hs │ │ ├── Muse.hs │ │ ├── Native.hs │ │ ├── OOXML.hs │ │ ├── Org.hs │ │ ├── Plain.hs │ │ ├── Powerpoint.hs │ │ ├── RST.hs │ │ └── TEI.hs │ └── XML.hs ├── ansi-test.ansi ├── ansi-test.txt ├── asciidoc-reader-include.adoc ├── asciidoc-reader-include.rb ├── asciidoc-reader.adoc ├── asciidoc-reader.native ├── bodybg.gif ├── command │ ├── 5876 │ │ └── metadata │ │ │ ├── 5876.yaml │ │ │ └── command │ │ │ └── 5876.yaml │ ├── 7861 │ │ └── metadata │ │ │ └── placeholder │ ├── 11090 │ │ └── ch1.typ │ ├── 01.csv │ ├── 10002.md │ ├── 10057.md │ ├── 10062.md │ ├── 10071.md │ ├── 10093.md │ ├── 10094.md │ ├── 10105.md │ ├── 10127.md │ ├── 10145.md │ ├── 10148.md │ ├── 10149.md │ ├── 10152.md │ ├── 10160.md │ ├── 10185.md │ ├── 10236.md │ ├── 10271.md │ ├── 10279.md │ ├── 10281.md │ ├── 10318.md │ ├── 10328.md │ ├── 10338-rst-multiple-header-rows.md │ ├── 10385.md │ ├── 10390.md │ ├── 10414.md │ ├── 10459.md │ ├── 10484.md │ ├── 10490.md │ ├── 10491.md │ ├── 10497.md │ ├── 10537.md │ ├── 10594.md │ ├── 10621.md │ ├── 10631.md │ ├── 10635.md │ ├── 10643.md │ ├── 10650.md │ ├── 10659.md │ ├── 10672.md │ ├── 10708.md │ ├── 10730.md │ ├── 10747.md │ ├── 10755.md │ ├── 10758.md │ ├── 10781.md │ ├── 10791.md │ ├── 10805.md │ ├── 10812.md │ ├── 10816.md │ ├── 10825.md │ ├── 10836.md │ ├── 10848.md │ ├── 10855.md │ ├── 10862.md │ ├── 10867.md │ ├── 10884.md │ ├── 10889.md │ ├── 10890.md │ ├── 10912.md │ ├── 10915.md │ ├── 10919.md │ ├── 10926.md │ ├── 10965.md │ ├── 10983.md │ ├── 10984.md │ ├── 11006.md │ ├── 11013.md │ ├── 11014.md │ ├── 11017.md │ ├── 11046.md │ ├── 11047.md │ ├── 11048.md │ ├── 11090.md │ ├── 11101.md │ ├── 11113.docx │ ├── 11113.md │ ├── 11124.md │ ├── 11128.md │ ├── 11140.md │ ├── 11150.md │ ├── 11162.md │ ├── 11188.md │ ├── 11210.md │ ├── 11211.md │ ├── 11253.md │ ├── 1126.md │ ├── 11266.md │ ├── 11270.md │ ├── 11309.md │ ├── 11312.md │ ├── 11323.md │ ├── 1166.md │ ├── 1279.md │ ├── 1390.md │ ├── 1592.md │ ├── 1608.md │ ├── 1629.md │ ├── 168.md │ ├── 1710.md │ ├── 1718.md │ ├── 1745.md │ ├── 1762.md │ ├── 1773.md │ ├── 1841.md │ ├── 1881.md │ ├── 1905.md │ ├── 2103.md │ ├── 2118.md │ ├── 2228.md │ ├── 2337.md │ ├── 2378.md │ ├── 2397.md │ ├── 2434.md │ ├── 2465.md │ ├── 2549.md │ ├── 2552.md │ ├── 256.md │ ├── 2602.md │ ├── 2606.md │ ├── 262.md │ ├── 2649.md │ ├── 2662.md │ ├── 2834.md │ ├── 2874.md │ ├── 2994.md │ ├── 3113.md │ ├── 3123.md │ ├── 3236.md │ ├── 3257.md │ ├── 3309.md │ ├── 3314.md │ ├── 3324.md │ ├── 3337.md │ ├── 3348.md │ ├── 3401.md │ ├── 3407.md │ ├── 3422.md │ ├── 3432.md │ ├── 3432a.md │ ├── 3450.md │ ├── 3475.md │ ├── 3487.md │ ├── 3494.md │ ├── 3497.md │ ├── 3499.md │ ├── 3510-export.latex │ ├── 3510-src.hs │ ├── 3510-subdoc.org │ ├── 3510.md │ ├── 3511.md │ ├── 3512.md │ ├── 3516.md │ ├── 3518.md │ ├── 3523.md │ ├── 3526.md │ ├── 3529.md │ ├── 3530.md │ ├── 3531.md │ ├── 3533-rst-csv-tables.csv │ ├── 3533-rst-csv-tables.md │ ├── 3534.md │ ├── 3537.md │ ├── 3539.md │ ├── 3558.md │ ├── 3568.md │ ├── 3570.md │ ├── 3577.md │ ├── 3585.md │ ├── 3587.md │ ├── 3596.md │ ├── 3615.md │ ├── 3619.md │ ├── 3630.md │ ├── 3667.md │ ├── 3674.md │ ├── 3675.md │ ├── 3681.md │ ├── 3690.md │ ├── 3701.md │ ├── 3706.md │ ├── 3708.md │ ├── 3715.md │ ├── 3716.md │ ├── 3730.md │ ├── 3733.md │ ├── 3734.md │ ├── 3736.md │ ├── 3752.md │ ├── 3755.md │ ├── 3771.md │ ├── 3773.md │ ├── 3779.md │ ├── 3792.md │ ├── 3794.md │ ├── 3803.md │ ├── 3804.md │ ├── 3816.md │ ├── 3824.md │ ├── 3840.md │ ├── 3853.md │ ├── 3880.md │ ├── 3880.txt │ ├── 3916.md │ ├── 3937.md │ ├── 3947.md │ ├── 3958.md │ ├── 3968.md │ ├── 3971.md │ ├── 3971b.tex │ ├── 3974.md │ ├── 3978.md │ ├── 3983.md │ ├── 3989.md │ ├── 4007.md │ ├── 4012.md │ ├── 4016.md │ ├── 4019.md │ ├── 4038.md │ ├── 4054.md │ ├── 4056.md │ ├── 4061.md │ ├── 4062.md │ ├── 4063.md │ ├── 4068.md │ ├── 4091.md │ ├── 4102.md │ ├── 4113.md │ ├── 4119.md │ ├── 4125.md │ ├── 4134.md │ ├── 4156.md │ ├── 4159.md │ ├── 4162.md │ ├── 4164.md │ ├── 4171.md │ ├── 4172.md │ ├── 4183.md │ ├── 4186.md │ ├── 4193.md │ ├── 4199.md │ ├── 4208.md │ ├── 4235.md │ ├── 4240.md │ ├── 4253.md │ ├── 4254.md │ ├── 4280.md │ ├── 4281.md │ ├── 4284.md │ ├── 4306.md │ ├── 4320.md │ ├── 4374.md │ ├── 4382.md │ ├── 4420.md │ ├── 4424.md │ ├── 4442.md │ ├── 4454.md │ ├── 4465.md │ ├── 4470.md │ ├── 4499.md │ ├── 4513.md │ ├── 4527.md │ ├── 4528.md │ ├── 4529.md │ ├── 4545.md │ ├── 4550.md │ ├── 4553.md │ ├── 4564.md │ ├── 4576.md │ ├── 4578.md │ ├── 4579.md │ ├── 4589.md │ ├── 4594.md │ ├── 4598.md │ ├── 4624.md │ ├── 4635.md │ ├── 4637.md │ ├── 4639.md │ ├── 4653.md │ ├── 4667.md │ ├── 4669.md │ ├── 4677.md │ ├── 4690.md │ ├── 4715.md │ ├── 4722.md │ ├── 4742.md │ ├── 4743.md │ ├── 4746.md │ ├── 4748.md │ ├── 4768.md │ ├── 4781.md │ ├── 4794.md │ ├── 4805-beamer-columns-alignment.md │ ├── 4811.md │ ├── 4817.md │ ├── 4819.md │ ├── 4832.md │ ├── 4833.md │ ├── 4842.md │ ├── 4845.md │ ├── 4848.md │ ├── 4860.md │ ├── 4877.md │ ├── 4880.md │ ├── 4885.md │ ├── 4908.md │ ├── 4913.md │ ├── 4919.md │ ├── 4928.md │ ├── 4933.md │ ├── 4960.md │ ├── 5010.md │ ├── 5014.md │ ├── 5039.md │ ├── 5050.md │ ├── 5053.md │ ├── 5071.md │ ├── 5072.md │ ├── 5079.md │ ├── 5080.md │ ├── 5081.md │ ├── 5099.md │ ├── 5107.md │ ├── 5116.md │ ├── 5119.md │ ├── 512.md │ ├── 5121.md │ ├── 5128.md │ ├── 5177.md │ ├── 5178.md │ ├── 5182.md │ ├── 5182.txt │ ├── 5195.md │ ├── 5233.md │ ├── 5241.md │ ├── 5271.md │ ├── 5285.md │ ├── 5304.md │ ├── 5321.md │ ├── 5340.md │ ├── 5360.md │ ├── 5367.md │ ├── 5368.md │ ├── 5369.md │ ├── 5407.md │ ├── 5410.md │ ├── 5416.md │ ├── 5420.md │ ├── 5439.md │ ├── 5446.md │ ├── 5474-figures.md │ ├── 5474-tables.md │ ├── 5476.md │ ├── 5495.md │ ├── 5519.md │ ├── 5529.md │ ├── 5540.md │ ├── 5541-localLink.md │ ├── 5541-nesting.md │ ├── 5541-urlLink.md │ ├── 5543.md │ ├── 5549.md │ ├── 5565.md │ ├── 5566.md │ ├── 5574.md │ ├── 5619.md │ ├── 5620.md │ ├── 5627.md │ ├── 5635.md │ ├── 5642.md │ ├── 5650.md │ ├── 5654.md │ ├── 5655.md │ ├── 5682.md │ ├── 5684.md │ ├── 5686.md │ ├── 5690.md │ ├── 5700-metadata-file-1.yml │ ├── 5700-metadata-file-2.yml │ ├── 5700.md │ ├── 5705.md │ ├── 5708.md │ ├── 5711.md │ ├── 5714.md │ ├── 5740.md │ ├── 5753.md │ ├── 5793.md │ ├── 5795.md │ ├── 5797.md │ ├── 5805.md │ ├── 5813.md │ ├── 5819.md │ ├── 5836.md │ ├── 5845.md │ ├── 5846.md │ ├── 5849-prefix.md │ ├── 5857.md │ ├── 5876.md │ ├── 5876.yaml │ ├── 5878.md │ ├── 5881.md │ ├── 5885.md │ ├── 5898.md │ ├── 5899.md │ ├── 5904.md │ ├── 5918.md │ ├── 5936.md │ ├── 5967.md │ ├── 5986.md │ ├── 6009.md │ ├── 6021.md │ ├── 6026.md │ ├── 6030.md │ ├── 6033.md │ ├── 6034.md │ ├── 6043.md │ ├── 6062.md │ ├── 6107.md │ ├── 6114.md │ ├── 6119.md │ ├── 6133.md │ ├── 6137.md │ ├── 6194.md │ ├── 6265.md │ ├── 6285.md │ ├── 6288.md │ ├── 6296.md │ ├── 6308.md │ ├── 6324.md │ ├── 6348.md │ ├── 6350.md │ ├── 6360.md │ ├── 6367.md │ ├── 6384.md │ ├── 6385.md │ ├── 6388.md │ ├── 6424.md │ ├── 6441.md │ ├── 645.md │ ├── 6466-beg.hs │ ├── 6466-end.hs │ ├── 6466-mid.hs │ ├── 6466-whole.hs │ ├── 6466.md │ ├── 6481.md │ ├── 6541.md │ ├── 6549.md │ ├── 6588.md │ ├── 6620.md │ ├── 6658.md │ ├── 6675.md │ ├── 6699.md │ ├── 6709.md │ ├── 6719.md │ ├── 6723.md │ ├── 6739.md │ ├── 6740.md │ ├── 6741.md │ ├── 6752.md │ ├── 6755.md │ ├── 6765.md │ ├── 6768.md │ ├── 6774.md │ ├── 6783.md │ ├── 6791.md │ ├── 6792.md │ ├── 6796.md │ ├── 6802.md │ ├── 6821.md │ ├── 6836.md │ ├── 6837.md │ ├── 6844.md │ ├── 6855.md │ ├── 6858.md │ ├── 6869.md │ ├── 6873.md │ ├── 6890.md │ ├── 6925.md │ ├── 6948.md │ ├── 6951.md │ ├── 6958.md │ ├── 6959.md │ ├── 6970.md │ ├── 6992.md │ ├── 6993.md │ ├── 7003.md │ ├── 7006.md │ ├── 7009.md │ ├── 7016.md │ ├── 7041.md │ ├── 7042.md │ ├── 7058.md │ ├── 7064.md │ ├── 7067.md │ ├── 7080.md │ ├── 7092.md │ ├── 7099.md │ ├── 7112.md │ ├── 7129.md │ ├── 7132.md │ ├── 7134.md │ ├── 7145.md │ ├── 7155.md │ ├── 7172.md │ ├── 7173.md │ ├── 7181.md │ ├── 7208.md │ ├── 7214.md │ ├── 7216.md │ ├── 7219.md │ ├── 7266.md │ ├── 7272.md │ ├── 7278.md │ ├── 7282.md │ ├── 7288.md │ ├── 7299.md │ ├── 7321.md │ ├── 7323.md │ ├── 7324.md │ ├── 7326.md │ ├── 7329.md │ ├── 7339.md │ ├── 7340.md │ ├── 7376.md │ ├── 7394.md │ ├── 7397.md │ ├── 7400.md │ ├── 7416.md │ ├── 7434.md │ ├── 7436.md │ ├── 7473.md │ ├── 7482.md │ ├── 7494.md │ ├── 7497.md │ ├── 7512.md │ ├── 7520.md │ ├── 7521.md │ ├── 7525.md │ ├── 7529.md │ ├── 7546.md │ ├── 7557.md │ ├── 7568.md │ ├── 7573.md │ ├── 7589.md │ ├── 7615.md │ ├── 7623.md │ ├── 7632.md │ ├── 7668.md │ ├── 7678.md │ ├── 7691.docx │ ├── 7691.md │ ├── 7692.md │ ├── 7697.md │ ├── 7713.md │ ├── 7723.md │ ├── 7726.md │ ├── 7738.md │ ├── 7743.md │ ├── 7761.md │ ├── 7778.md │ ├── 7803.md │ ├── 7808.md │ ├── 7810.md │ ├── 7813-meta.yaml │ ├── 7813.md │ ├── 7826.md │ ├── 7847.md │ ├── 7857.md │ ├── 7858.md │ ├── 7861.md │ ├── 7861.yaml │ ├── 7863.md │ ├── 7871.md │ ├── 7884.md │ ├── 7894.md │ ├── 7919.md │ ├── 7920.md │ ├── 7930.md │ ├── 7939.md │ ├── 7941.md │ ├── 7953.md │ ├── 7965.md │ ├── 8003.md │ ├── 8011.md │ ├── 8028.md │ ├── 8047.md │ ├── 8070.md │ ├── 8079.md │ ├── 8088.md │ ├── 8097.md │ ├── 8098.md │ ├── 8110.md │ ├── 8131.md │ ├── 8150.md │ ├── 8170.md │ ├── 8174.md │ ├── 8178.md │ ├── 8179.md │ ├── 8182.md │ ├── 8201.md │ ├── 8204.md │ ├── 8216.md │ ├── 8219.md │ ├── 8236.md │ ├── 8243.md │ ├── 8251.md │ ├── 8254.md │ ├── 8256.md │ ├── 8257.md │ ├── 8281.md │ ├── 8302.md │ ├── 8307.md │ ├── 8344.md │ ├── 8354.md │ ├── 8364.md │ ├── 8365.md │ ├── 8380.md │ ├── 8402.md │ ├── 8437.md │ ├── 8486.md │ ├── 8487.md │ ├── 8504.md │ ├── 8508.md │ ├── 8511.md │ ├── 8513.md │ ├── 853.md │ ├── 8534.md │ ├── 8573.md │ ├── 8611.md │ ├── 8638.md │ ├── 8652.md │ ├── 8653.md │ ├── 8659.md │ ├── 8661.md │ ├── 8665.md │ ├── 8666.md │ ├── 8681.md │ ├── 8689.md │ ├── 8711.md │ ├── 8738.md │ ├── 8745.md │ ├── 8764.md │ ├── 8770-block.md │ ├── 8770-document.md │ ├── 8770-section.md │ ├── 8777.md │ ├── 8789.md │ ├── 8853.md │ ├── 8863.md │ ├── 8867.md │ ├── 8869.md │ ├── 8872.md │ ├── 8948.md │ ├── 8956.md │ ├── 8957.md │ ├── 8966.md │ ├── 8981.md │ ├── 8984.md │ ├── 8992.md │ ├── 8997.md │ ├── 9000.md │ ├── 9002.docx │ ├── 9002.md │ ├── 9017.md │ ├── 9021.md │ ├── 9038.md │ ├── 9042.md │ ├── 9043.md │ ├── 9045.md │ ├── 9047.md │ ├── 9088.md │ ├── 9090.md │ ├── 9121.md │ ├── 9150.md │ ├── 9159.md │ ├── 9171.md │ ├── 9193.md │ ├── 9196.md │ ├── 9201.md │ ├── 9202.md │ ├── 9209.md │ ├── 9218.md │ ├── 9236.md │ ├── 9275.md │ ├── 9279.md │ ├── 9293.md │ ├── 934.md │ ├── 9346.md │ ├── 9350.md │ ├── 9358.docx │ ├── 9358.md │ ├── 9366.md │ ├── 9371.md │ ├── 9386.md │ ├── 9387.md │ ├── 9388.md │ ├── 9391.docx │ ├── 9391.md │ ├── 9420.md │ ├── 9420.svg │ ├── 9445.md │ ├── 9452.md │ ├── 9467.md │ ├── 9467.svg │ ├── 9472.md │ ├── 9475.md │ ├── 9478.md │ ├── 9481.md │ ├── 9516.md │ ├── 9517.md │ ├── 9555.md │ ├── 9569.md │ ├── 9576.md │ ├── 9579.md │ ├── 9585.md │ ├── 9586.md │ ├── 9597.md │ ├── 9603.docx │ ├── 9603.md │ ├── 9616.md │ ├── 9630.md │ ├── 9632.md │ ├── 9635.md │ ├── 9639.md │ ├── 9644.md │ ├── 9652.md │ ├── 9652.svg │ ├── 9657.md │ ├── 9676.md │ ├── 9700.md │ ├── 9777-b.md │ ├── 9777.md │ ├── 9792.md │ ├── 9797.md │ ├── 9805.md │ ├── 9807.md │ ├── 9809.md │ ├── 982.md │ ├── 9865.md │ ├── 987.md │ ├── 9878.md │ ├── 9902.md │ ├── 9904.md │ ├── 9905.md │ ├── 9908.md │ ├── 9943.md │ ├── 9945.md │ ├── 9953.md │ ├── 9987.md │ ├── A.txt │ ├── B.txt │ ├── C.txt │ ├── D.txt │ ├── SVG_logo-without-xml-declaration.svg │ ├── SVG_logo.svg │ ├── abbrevs │ ├── adjacent_latex_blocks.md │ ├── advanced-optical-materials.csl │ ├── alerts.md │ ├── american-medical-association.csl │ ├── annales.csl │ ├── apa.csl │ ├── archeologie-medievale.csl │ ├── ascii.md │ ├── author-in-text-move-note.md │ ├── averroes.bib │ ├── bar-endinput.tex │ ├── bar.tex │ ├── biblatex-266.md │ ├── biblatex-aksin.md │ ├── biblatex-almendro.md │ ├── biblatex-angenendt.md │ ├── biblatex-aristotle-anima.md │ ├── biblatex-aristotle-physics.md │ ├── biblatex-aristotle-poetics.md │ ├── biblatex-aristotle-rhetoric.md │ ├── biblatex-article.md │ ├── biblatex-augustine.md │ ├── biblatex-averroes-bland.md │ ├── biblatex-averroes-hannes.md │ ├── biblatex-averroes-hercz.md │ ├── biblatex-baez-article.md │ ├── biblatex-baez-online.md │ ├── biblatex-basic.md │ ├── biblatex-bertram.md │ ├── biblatex-bibstring-resolution.md │ ├── biblatex-book-averroes.md │ ├── biblatex-book-coleridge.md │ ├── biblatex-book-title-maintitle-series.md │ ├── biblatex-book-vazques-de-parga.md │ ├── biblatex-brandt.md │ ├── biblatex-britannica.md │ ├── biblatex-chiu.md │ ├── biblatex-cicero.md │ ├── biblatex-cms.md │ ├── biblatex-coleridge.md │ ├── biblatex-companion.md │ ├── biblatex-cotton.md │ ├── biblatex-crossref-inbook-mvbook.md │ ├── biblatex-crossref-nested.md │ ├── biblatex-ctan.md │ ├── biblatex-dates.md │ ├── biblatex-doody.md │ ├── biblatex-edtf-date.md │ ├── biblatex-escapedquotes.md │ ├── biblatex-formatting.md │ ├── biblatex-gaonkar-in.md │ ├── biblatex-gaonkar.md │ ├── biblatex-geer.md │ ├── biblatex-gerhardt.md │ ├── biblatex-gillies.md │ ├── biblatex-glashow.md │ ├── biblatex-gonzalez.md │ ├── biblatex-hammond.md │ ├── biblatex-herrmann.md │ ├── biblatex-hyman.md │ ├── biblatex-iliad.md │ ├── biblatex-inbook-title-booktitle-maintitle-series-2.md │ ├── biblatex-inbook-title-booktitle-maintitle-series.md │ ├── biblatex-inbook.md │ ├── biblatex-incollection-2.md │ ├── biblatex-incollection.md │ ├── biblatex-inproceedings.md │ ├── biblatex-issue288.md │ ├── biblatex-itzhaki.md │ ├── biblatex-jaffe.md │ ├── biblatex-jcg.md │ ├── biblatex-kant-kpv.md │ ├── biblatex-kant-ku.md │ ├── biblatex-kastenholz.md │ ├── biblatex-knuth-ct-a.md │ ├── biblatex-knuth-ct-b.md │ ├── biblatex-knuth-ct-c.md │ ├── biblatex-knuth-ct-d.md │ ├── biblatex-knuth-ct-e.md │ ├── biblatex-knuth-ct-related.md │ ├── biblatex-knuth-ct.md │ ├── biblatex-kowalik.md │ ├── biblatex-kullback-related.md │ ├── biblatex-kullback-reprint.md │ ├── biblatex-kullback.md │ ├── biblatex-laufenberg.md │ ├── biblatex-loh.md │ ├── biblatex-malinowski.md │ ├── biblatex-manual.md │ ├── biblatex-markey.md │ ├── biblatex-maron.md │ ├── biblatex-massa.md │ ├── biblatex-moore-related.md │ ├── biblatex-moore.md │ ├── biblatex-moraux.md │ ├── biblatex-murray.md │ ├── biblatex-nietzsche-historie.md │ ├── biblatex-nietzsche-ksa.md │ ├── biblatex-nietzsche-ksa1.md │ ├── biblatex-online.md │ ├── biblatex-options-url-false-doi-false.md │ ├── biblatex-padhye.md │ ├── biblatex-patent.md │ ├── biblatex-periodical.md │ ├── biblatex-piccato.md │ ├── biblatex-pines.md │ ├── biblatex-quotes.md │ ├── biblatex-reese.md │ ├── biblatex-report.md │ ├── biblatex-salam.md │ ├── biblatex-sarfraz.md │ ├── biblatex-shore.md │ ├── biblatex-sigfridsson.md │ ├── biblatex-sorace.md │ ├── biblatex-spiegelberg.md │ ├── biblatex-springer.md │ ├── biblatex-strings.md │ ├── biblatex-test-case-conversion.md │ ├── biblatex-textnormal.md │ ├── biblatex-thesis.md │ ├── biblatex-title-and-shorttitle.md │ ├── biblatex-vangennep-related.md │ ├── biblatex-vangennep-trans.md │ ├── biblatex-vangennep.md │ ├── biblatex-vazques-de-parga-mvbook.md │ ├── biblatex-vazques-de-parga.md │ ├── biblatex-video.md │ ├── biblatex-vizedom-related.md │ ├── biblatex-wassenberg.md │ ├── biblatex-weinberg.md │ ├── biblatex-westfahl-frontier.md │ ├── biblatex-westfahl-space.md │ ├── biblatex-wilde.md │ ├── biblatex-worman.md │ ├── biblatex-yoon.md │ ├── biblio.bib │ ├── bibtex-basic.md │ ├── bioethics.csl │ ├── bits-book-meta.md │ ├── bits-book-part-wrapper-meta.md │ ├── bits-book-part-wrapper.md │ ├── bits-book.md │ ├── bits-index-elements.md │ ├── bits-legend.md │ ├── bits-named-boook-parts.md │ ├── bits-title-display-as.md │ ├── bits-title-supress.md │ ├── bits-toc-elements.md │ ├── chap1 │ │ ├── spider.png │ │ └── text.md │ ├── chap2 │ │ ├── spider.png │ │ └── text.md │ ├── chicago-annotated-bibliography.csl │ ├── chicago-author-date-with-original-date-and-status.csl │ ├── chicago-fullnote-bibliography.csl │ ├── chicago-note-bibliography.csl │ ├── chinese-gb7714-2005-numeric.csl │ ├── cite-in-inline-note.md │ ├── citeproc-17.md │ ├── citeproc-20.md │ ├── citeproc-7a.md │ ├── citeproc-7b.md │ ├── citeproc-87.md │ ├── citeproc-author-in-text-suffix.md │ ├── corrupt.svg │ ├── csv.md │ ├── defaults-inheritance-1.md │ ├── defaults-inheritance-2.md │ ├── defaults-inheritance-3.md │ ├── defaults1.yaml │ ├── defaults2.yaml │ ├── defaults3.yaml │ ├── defaults4.yaml │ ├── defaults5.yaml │ ├── defaults6.yaml │ ├── defaults7.yaml │ ├── defaults8.yaml │ ├── defaults9.yaml │ ├── din-1505-2.csl │ ├── docbook-bibliography.md │ ├── dokuwiki-quote.md │ ├── dots.md │ ├── duplicate_attributes.md │ ├── emoji.md │ ├── empty_paragraphs.md │ ├── figures-context.md │ ├── figures-fb2.md │ ├── figures-haddock.md │ ├── figures-html.md │ ├── figures-jats.md │ ├── figures-jira.md │ ├── figures-latex.md │ ├── figures-markdown.md │ ├── figures-mediawiki.md │ ├── figures-org.md │ ├── figures-rst.md │ ├── figures-texinfo.md │ ├── figures-textile.md │ ├── figures-xwiki.md │ ├── figures-zimwiki.md │ ├── file1.txt │ ├── file2.txt │ ├── gfm.md │ ├── harvard-university-of-kent.csl │ ├── hspace.md │ ├── html-read-figure.md │ ├── html-trim-definition-list-terms.md │ ├── html-writer-a-in-a.md │ ├── hyphenat.md │ ├── ieee.csl │ ├── ifstrequal.md │ ├── indented-fences.md │ ├── inkscape-cube.svg │ ├── input-with-endinput.md │ ├── issue160.csl │ ├── issue437.csl │ ├── issue58.csl │ ├── jabberwocky.md │ ├── jats-figure-alt-text.md │ ├── latex-center.md │ ├── latex-color.md │ ├── latex-command-comment.md │ ├── latex-fontawesome.md │ ├── latex-math-trailing-space.md │ ├── latex-tabular-column-specs.md │ ├── le-tapuscrit-note.csl │ ├── lettrine.md │ ├── lists-inside-definition.md │ ├── locators.csl │ ├── lstlisting.md │ ├── macro-defs-in-preamble.md │ ├── macros.md │ ├── make-section-column-divs.md │ ├── man-defines.md │ ├── md-abbrevs.md │ ├── mdoc-An.md │ ├── mdoc-Bd-unfilled.md │ ├── mdoc-Bl-column.md │ ├── mdoc-Bl-tag.md │ ├── minimal.svg │ ├── mmd-metadata.md │ ├── modern-humanities-research-association.csl │ ├── multiple-metadata-blocks.md │ ├── nested-spanlike.md │ ├── nested-table-to-asciidoc-6942.md │ ├── newif.md │ ├── oscola.csl │ ├── pandoc-citeproc-118.md │ ├── pandoc-citeproc-119.md │ ├── pandoc-citeproc-13.md │ ├── pandoc-citeproc-136.md │ ├── pandoc-citeproc-14.md │ ├── pandoc-citeproc-152.md │ ├── pandoc-citeproc-160.md │ ├── pandoc-citeproc-175.md │ ├── pandoc-citeproc-197.md │ ├── pandoc-citeproc-213.md │ ├── pandoc-citeproc-25.md │ ├── pandoc-citeproc-250.md │ ├── pandoc-citeproc-27.md │ ├── pandoc-citeproc-292.md │ ├── pandoc-citeproc-301.md │ ├── pandoc-citeproc-307.md │ ├── pandoc-citeproc-31.md │ ├── pandoc-citeproc-312.md │ ├── pandoc-citeproc-320.md │ ├── pandoc-citeproc-320a.md │ ├── pandoc-citeproc-322.md │ ├── pandoc-citeproc-325.md │ ├── pandoc-citeproc-327.md │ ├── pandoc-citeproc-338.md │ ├── pandoc-citeproc-351.md │ ├── pandoc-citeproc-356.md │ ├── pandoc-citeproc-360.md │ ├── pandoc-citeproc-361.md │ ├── pandoc-citeproc-365.md │ ├── pandoc-citeproc-371.md │ ├── pandoc-citeproc-38.md │ ├── pandoc-citeproc-386.md │ ├── pandoc-citeproc-392.md │ ├── pandoc-citeproc-399.md │ ├── pandoc-citeproc-401.md │ ├── pandoc-citeproc-408.md │ ├── pandoc-citeproc-416.md │ ├── pandoc-citeproc-437.md │ ├── pandoc-citeproc-47.md │ ├── pandoc-citeproc-51.md │ ├── pandoc-citeproc-53.md │ ├── pandoc-citeproc-57.md │ ├── pandoc-citeproc-58.md │ ├── pandoc-citeproc-61.md │ ├── pandoc-citeproc-64.md │ ├── pandoc-citeproc-65.md │ ├── pandoc-citeproc-68.md │ ├── pandoc-citeproc-7.md │ ├── pandoc-citeproc-70.md │ ├── pandoc-citeproc-75.md │ ├── pandoc-citeproc-76.md │ ├── pandoc-citeproc-77.md │ ├── pandoc-citeproc-82.md │ ├── pandoc-citeproc-87.md │ ├── pandoc-citeproc-chicago-author-date.md │ ├── pandoc-citeproc-chicago-fullnote-bibliography.md │ ├── pandoc-citeproc-ieee.md │ ├── pandoc-citeproc-locators-delimited.md │ ├── pandoc-citeproc-locators-integrated.md │ ├── pandoc-citeproc-move-period-inside-quote.md │ ├── pandoc-citeproc-no-author.md │ ├── pandoc-citeproc-number-of-volumes.md │ ├── pandoc-citeproc-page-range.md │ ├── parse-raw.md │ ├── refs.md │ ├── rst-links.md │ ├── rst-writer-gridtable-if-rowspans.md │ ├── rst_block_subst.md │ ├── sage-harvard.csl │ ├── science.csl │ ├── section-divs.md │ ├── setext-fenced-div.md │ ├── shift-heading-level-by.md │ ├── short-caption.md │ ├── sloppypar.md │ ├── smart.md │ ├── style399.csl │ ├── sub-file-chapter-1.tex │ ├── sub-file-chapter-2.tex │ ├── svg.md │ ├── table-with-cell-align.md │ ├── table-with-column-span.md │ ├── tabularx.md │ ├── tasklist.md │ ├── tex-group.md │ ├── three.txt │ ├── toc.md │ ├── translations.md │ ├── typst-hs-80.md │ ├── typst-property-output.md │ ├── unicode-collation.md │ ├── vancouver.csl │ ├── vars-and-metadata.md │ ├── video-audio.md │ ├── wikilinks_title_after_pipe.md │ ├── wikilinks_title_before_pipe.md │ ├── write18.md │ ├── yaml-metadata-blocks.md │ ├── yaml-metadata.yaml │ ├── yaml-with-chomp.md │ └── zeitschrift-fur-kunstgeschichte.csl ├── creole-reader.native ├── creole-reader.txt ├── djot-reader.djot ├── djot-reader.native ├── docbook-chapter.docbook ├── docbook-chapter.native ├── docbook-reader.docbook ├── docbook-reader.native ├── docbook-xref.docbook ├── docbook-xref.native ├── docx │ ├── 0_level_headers.docx │ ├── 0_level_headers.native │ ├── adjacent_codeblocks.docx │ ├── adjacent_codeblocks.native │ ├── already_auto_ident.docx │ ├── already_auto_ident.native │ ├── alternate_document_path.docx │ ├── alternate_document_path.native │ ├── anchor_header_after_anchor.docx │ ├── anchor_header_after_anchor.native │ ├── block_quotes.docx │ ├── block_quotes.native │ ├── char_styles.docx │ ├── char_styles.native │ ├── codeblock.docx │ ├── codeblock.native │ ├── comments.docx │ ├── comments.native │ ├── comments_no_comments.native │ ├── comments_warning.docx │ ├── compact-style-removal.docx │ ├── compact-style-removal.native │ ├── cross_reference.docx │ ├── cross_reference.native │ ├── custom-style-no-styles.native │ ├── custom-style-preserve.native │ ├── custom-style-reference.docx │ ├── custom-style-roundtrip-end.native │ ├── custom-style-with-styles.native │ ├── custom_style.native │ ├── deep_normalize.docx │ ├── deep_normalize.native │ ├── definition_list.docx │ ├── definition_list.native │ ├── diagram.docx │ ├── diagram.native │ ├── document-properties-short-desc.native │ ├── document-properties.native │ ├── drop_cap.docx │ ├── drop_cap.native │ ├── dummy_item_after_list_item.docx │ ├── dummy_item_after_list_item.native │ ├── dummy_item_after_paragraph.docx │ ├── dummy_item_after_paragraph.native │ ├── empty_field.docx │ ├── empty_field.native │ ├── enumerated_headings.docx │ ├── enumerated_headings.native │ ├── german_styled_lists.docx │ ├── german_styled_lists.native │ ├── golden │ │ ├── block_quotes.docx │ │ ├── codeblock.docx │ │ ├── comments.docx │ │ ├── custom_style_no_reference.docx │ │ ├── custom_style_preserve.docx │ │ ├── custom_style_reference.docx │ │ ├── definition_list.docx │ │ ├── document-properties-short-desc.docx │ │ ├── document-properties.docx │ │ ├── headers.docx │ │ ├── image.docx │ │ ├── inline_code.docx │ │ ├── inline_formatting.docx │ │ ├── inline_images.docx │ │ ├── link_in_notes.docx │ │ ├── links.docx │ │ ├── lists.docx │ │ ├── lists_9994.docx │ │ ├── lists_continuing.docx │ │ ├── lists_div_bullets.docx │ │ ├── lists_multiple_initial.docx │ │ ├── lists_restarting.docx │ │ ├── nested_anchors_in_header.docx │ │ ├── notes.docx │ │ ├── raw-blocks.docx │ │ ├── raw-bookmarks.docx │ │ ├── table_one_row.docx │ │ ├── table_with_list_cell.docx │ │ ├── tables-default-widths.docx │ │ ├── tables.docx │ │ ├── tables_separated_with_rawblock.docx │ │ ├── task_list.docx │ │ ├── track_changes_deletion.docx │ │ ├── track_changes_insertion.docx │ │ ├── track_changes_move.docx │ │ ├── track_changes_scrubbed_metadata.docx │ │ ├── unicode.docx │ │ └── verbatim_subsuper.docx │ ├── hanging_indent.docx │ ├── hanging_indent.native │ ├── headers.docx │ ├── headers.native │ ├── i18n_blocks.docx │ ├── i18n_blocks.native │ ├── image.docx │ ├── image_no_embed.native │ ├── image_no_embed_writer.native │ ├── image_vml.docx │ ├── image_vml.native │ ├── image_vml_as_object.docx │ ├── image_vml_as_object.native │ ├── image_writer_test.native │ ├── inline_code.docx │ ├── inline_code.native │ ├── inline_formatting.docx │ ├── inline_formatting.native │ ├── inline_formatting_writer.native │ ├── inline_images.docx │ ├── inline_images.native │ ├── inline_images_writer.native │ ├── inline_images_writer_test.native │ ├── instrText_hyperlink.docx │ ├── instrText_hyperlink.native │ ├── link_in_notes.docx │ ├── link_in_notes.native │ ├── links.docx │ ├── links.native │ ├── links_writer.native │ ├── lists-compact.docx │ ├── lists-compact.native │ ├── lists.docx │ ├── lists.native │ ├── lists_9994.native │ ├── lists_continuing.docx │ ├── lists_continuing.native │ ├── lists_div_bullets.native │ ├── lists_level_override.docx │ ├── lists_level_override.native │ ├── lists_multiple_initial.native │ ├── lists_restarting.docx │ ├── lists_restarting.native │ ├── lists_sublist_reset.docx │ ├── lists_sublist_reset.native │ ├── lists_writer.native │ ├── mendeley_citations.docx │ ├── mendeley_citations_minus.native │ ├── mendeley_citations_plus.native │ ├── metadata.docx │ ├── metadata.native │ ├── metadata_after_normal.docx │ ├── metadata_after_normal.native │ ├── nested_anchors_in_header.docx │ ├── nested_anchors_in_header.native │ ├── nested_instrText.docx │ ├── nested_instrText.native │ ├── nested_sdt.docx │ ├── nested_sdt.native │ ├── nested_smart_tags.docx │ ├── nested_smart_tags.native │ ├── normalize.docx │ ├── normalize.native │ ├── notes.docx │ ├── notes.native │ ├── numbered_header.docx │ ├── numbered_header.native │ ├── overlapping_targets.docx │ ├── overlapping_targets.native │ ├── pageref.docx │ ├── pageref.native │ ├── paragraph_insertion_deletion.docx │ ├── paragraph_insertion_deletion_accept.native │ ├── paragraph_insertion_deletion_all.native │ ├── paragraph_insertion_deletion_reject.native │ ├── raw-blocks.native │ ├── raw-bookmarks.native │ ├── relative_indentation_blockquotes.docx │ ├── relative_indentation_blockquotes.native │ ├── sdt_elements.docx │ ├── sdt_elements.native │ ├── sdt_in_footnote.docx │ ├── sdt_in_footnote.native │ ├── special_punctuation.docx │ ├── special_punctuation.native │ ├── table_captions_no_field.docx │ ├── table_captions_no_field.native │ ├── table_captions_with_field.docx │ ├── table_captions_with_field.native │ ├── table_header_rowspan.docx │ ├── table_header_rowspan.native │ ├── table_one_header_row.docx │ ├── table_one_header_row.native │ ├── table_one_row.docx │ ├── table_one_row.native │ ├── table_variable_width.docx │ ├── table_variable_width.native │ ├── table_with_list_cell.docx │ ├── table_with_list_cell.native │ ├── tables-default-widths.native │ ├── tables.docx │ ├── tables.native │ ├── tables_separated_with_rawblock.native │ ├── tabs.docx │ ├── tabs.native │ ├── task_list.docx │ ├── task_list.native │ ├── text_in_shape_format.docx │ ├── text_in_shape_format.native │ ├── track_changes_deletion.docx │ ├── track_changes_deletion_accept.native │ ├── track_changes_deletion_all.native │ ├── track_changes_deletion_reject.native │ ├── track_changes_insertion.docx │ ├── track_changes_insertion_accept.native │ ├── track_changes_insertion_all.native │ ├── track_changes_insertion_reject.native │ ├── track_changes_move.docx │ ├── track_changes_move_accept.native │ ├── track_changes_move_all.native │ ├── track_changes_move_reject.native │ ├── track_changes_scrubbed_metadata.docx │ ├── track_changes_scrubbed_metadata.native │ ├── trailing_spaces_in_formatting.docx │ ├── trailing_spaces_in_formatting.native │ ├── trim_last_inline.docx │ ├── trim_last_inline.native │ ├── unicode.docx │ ├── unicode.native │ ├── unused_anchors.docx │ ├── unused_anchors.native │ ├── verbatim_subsuper.docx │ ├── verbatim_subsuper.native │ ├── zotero_citations.docx │ ├── zotero_citations_minus.native │ └── zotero_citations_plus.native ├── dokuwiki_external_images.dokuwiki ├── dokuwiki_external_images.native ├── dokuwiki_inline_formatting.dokuwiki ├── dokuwiki_inline_formatting.native ├── dokuwiki_multiblock_table.dokuwiki ├── dokuwiki_multiblock_table.native ├── endnotexml-reader.native ├── endnotexml-reader.xml ├── epub │ ├── epub2_cover.epub │ ├── epub2_no_cover.epub │ ├── epub2_picture.epub │ ├── features.epub │ ├── features.native │ ├── formatting.epub │ ├── formatting.native │ ├── img.epub │ ├── img_no_cover.epub │ ├── wasteland.epub │ └── wasteland.native ├── fb2 │ ├── basic.fb2 │ ├── basic.markdown │ ├── images-embedded.fb2 │ ├── images-embedded.html │ ├── images.fb2 │ ├── images.markdown │ ├── math.fb2 │ ├── math.markdown │ ├── meta.fb2 │ ├── meta.markdown │ ├── reader │ │ ├── emphasis.fb2 │ │ ├── emphasis.native │ │ ├── epigraph.fb2 │ │ ├── epigraph.native │ │ ├── meta.fb2 │ │ ├── meta.native │ │ ├── notes.fb2 │ │ ├── notes.native │ │ ├── poem.fb2 │ │ ├── poem.native │ │ ├── titles.fb2 │ │ └── titles.native │ ├── test-small.png │ ├── test.jpg │ ├── titles.fb2 │ └── titles.markdown ├── haddock-reader.haddock ├── haddock-reader.native ├── html-reader.html ├── html-reader.native ├── insert ├── ipynb │ ├── mime.ipynb │ ├── mime.native │ ├── mime.out.ipynb │ ├── rank.ipynb │ ├── rank.out.html │ ├── simple.in.native │ ├── simple.ipynb │ └── simple.out.native ├── jats-reader.native ├── jats-reader.xml ├── jira-reader.jira ├── jira-reader.native ├── lalune.jpg ├── latex-reader.latex ├── latex-reader.native ├── lhs-test-markdown.native ├── lhs-test.fragment.html+lhs ├── lhs-test.html ├── lhs-test.html+lhs ├── lhs-test.latex ├── lhs-test.latex+lhs ├── lhs-test.markdown ├── lhs-test.markdown+lhs ├── lhs-test.native ├── lhs-test.rst ├── lhs-test.rst+lhs ├── man-reader.man ├── man-reader.native ├── markdown-citations.native ├── markdown-citations.txt ├── markdown-reader-more.native ├── markdown-reader-more.txt ├── media │ ├── rId25.jpg │ ├── rId26.jpg │ └── rId27.jpg ├── mediawiki-reader.native ├── mediawiki-reader.wiki ├── movie.jpg ├── odt │ ├── markdown │ │ ├── blockquote2.md │ │ ├── bold.md │ │ ├── citation.md │ │ ├── endnote.md │ │ ├── externalLink.md │ │ ├── footnote.md │ │ ├── formula.md │ │ ├── headers.md │ │ ├── horizontalRule.md │ │ ├── image.md │ │ ├── imageIndex.md │ │ ├── imageWithCaption.md │ │ ├── italic.md │ │ ├── listBlocks.md │ │ ├── paragraph.md │ │ ├── strikeout.md │ │ ├── trackedChanges.md │ │ └── underlined.md │ ├── native │ │ ├── blockquote.native │ │ ├── image.native │ │ ├── imageIndex.native │ │ ├── imageWithCaption.native │ │ ├── inlinedCode.native │ │ ├── listContinueNumbering.native │ │ ├── listContinueNumbering2.native │ │ ├── orderedListHeader.native │ │ ├── orderedListMixed.native │ │ ├── orderedListRoman.native │ │ ├── orderedListSimple.native │ │ ├── referenceToChapter.native │ │ ├── referenceToListItem.native │ │ ├── referenceToText.native │ │ ├── simpleTable.native │ │ ├── simpleTableWithCaption.native │ │ ├── simpleTableWithHeader.native │ │ ├── simpleTableWithMultipleHeaderRows.native │ │ ├── tab.native │ │ ├── tableWithContents.native │ │ ├── textMixedStyles.native │ │ ├── unicode.native │ │ ├── unorderedList.native │ │ └── unorderedListHeader.native │ └── odt │ │ ├── blockquote.odt │ │ ├── blockquote2.odt │ │ ├── bold.odt │ │ ├── citation.odt │ │ ├── endnote.odt │ │ ├── expression.odt │ │ ├── expressionUnevaluated.odt │ │ ├── externalLink.odt │ │ ├── footnote.odt │ │ ├── formula.odt │ │ ├── headers.odt │ │ ├── hiddenTextByStyle.odt │ │ ├── hiddenTextByVariable.odt │ │ ├── horizontalRule.odt │ │ ├── image.odt │ │ ├── imageIndex.odt │ │ ├── imageWithCaption.odt │ │ ├── inlinedCode.odt │ │ ├── italic.odt │ │ ├── listBlocks.odt │ │ ├── listContinueNumbering.odt │ │ ├── listContinueNumbering2.odt │ │ ├── orderedListHeader.odt │ │ ├── orderedListMixed.odt │ │ ├── orderedListRoman.odt │ │ ├── orderedListSimple.odt │ │ ├── paragraph.odt │ │ ├── referenceAllInOne.odt │ │ ├── referenceToChapter.odt │ │ ├── referenceToListItem.odt │ │ ├── referenceToText.odt │ │ ├── simpleTable.odt │ │ ├── simpleTableWithCaption.odt │ │ ├── simpleTableWithHeader.odt │ │ ├── simpleTableWithMultipleHeaderRows.odt │ │ ├── strikeout.odt │ │ ├── tab.odt │ │ ├── table.odt │ │ ├── tableWithCaption.odt │ │ ├── tableWithContents.odt │ │ ├── textMixedStyles.odt │ │ ├── trackedChanges.odt │ │ ├── underlined.odt │ │ ├── unicode.odt │ │ ├── unorderedList.odt │ │ ├── unorderedListHeader.odt │ │ └── variable.odt ├── opml-reader.native ├── opml-reader.opml ├── org-select-tags.native ├── org-select-tags.org ├── pipe-tables.native ├── pipe-tables.txt ├── pod-reader.native ├── pod-reader.pod ├── pptx-reader │ ├── basic.native │ └── basic.pptx ├── pptx │ ├── background-image │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── blanks │ │ ├── just-speaker-notes │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── nbsp-in-body │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ └── nbsp-in-heading │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── code-custom │ │ ├── output.pptx │ │ └── templated.pptx │ ├── code │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── comparison │ │ ├── both-columns │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── extra-image │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── extra-text │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── non-text-first │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ └── one-column │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── content-with-caption │ │ ├── heading-text-image │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── image-text │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ └── text-image │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── document-properties-short-desc │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── document-properties │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── endnotes-toc │ │ ├── output.pptx │ │ └── templated.pptx │ ├── endnotes │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── footer │ │ ├── basic │ │ │ ├── output.pptx │ │ │ └── reference.pptx │ │ ├── fixed-date │ │ │ ├── output.pptx │ │ │ └── reference.pptx │ │ ├── higher-slide-number │ │ │ ├── output.pptx │ │ │ └── reference.pptx │ │ ├── input.native │ │ └── no-title-slide │ │ │ ├── output.pptx │ │ │ └── reference.pptx │ ├── images │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── incremental-lists │ │ ├── with-flag │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ └── without-flag │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── inline-formatting │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── layouts │ │ ├── deleted.pptx │ │ ├── input.native │ │ └── moved.pptx │ ├── list-level │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── lists │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── pauses │ │ └── without-incremental │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── raw-ooxml │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── reference-deleted-layouts.pptx │ ├── reference-depth.pptx │ ├── reference-moved-layouts.pptx │ ├── reference-no-slides.pptx │ ├── reference-no-slides │ │ ├── add-slides │ │ │ ├── input.native │ │ │ └── output.pptx │ │ └── with-notes │ │ │ ├── input.native │ │ │ └── output.pptx │ ├── remove-empty-slides │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── single-column │ │ ├── image │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ └── text │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── slide-breaks-slide-level-1 │ │ ├── output.pptx │ │ └── templated.pptx │ ├── slide-breaks-toc │ │ ├── output.pptx │ │ └── templated.pptx │ ├── slide-breaks │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── slide-level-0 │ │ ├── h1-h2-with-table │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── h1-with-image │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ ├── h1-with-table │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ │ └── h2-with-image │ │ │ ├── input.native │ │ │ ├── output.pptx │ │ │ └── templated.pptx │ ├── speaker-notes-after-metadata │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── speaker-notes-afterheader │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── speaker-notes-afterseps │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── speaker-notes │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── start-numbering-at │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ ├── tables │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ └── two-column │ │ ├── all-text │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx │ │ └── text-and-image │ │ ├── input.native │ │ ├── output.pptx │ │ └── templated.pptx ├── rst-reader.native ├── rst-reader.rst ├── rtf │ ├── accent.native │ ├── accent.rtf │ ├── bookmark.native │ ├── bookmark.rtf │ ├── footnote.native │ ├── footnote.rtf │ ├── formatting.native │ ├── formatting.rtf │ ├── heading.native │ ├── heading.rtf │ ├── image.native │ ├── image.rtf │ ├── link.native │ ├── link.rtf │ ├── list_complex.native │ ├── list_complex.rtf │ ├── list_simple.native │ ├── list_simple.rtf │ ├── table_error_codes.native │ ├── table_error_codes.rtf │ ├── table_simple.native │ ├── table_simple.rtf │ ├── unicode.native │ └── unicode.rtf ├── s5-basic.html ├── s5-fancy.html ├── s5-fragment.html ├── s5-inserts.html ├── s5.native ├── tables-rstsubset.native ├── tables.asciidoc ├── tables.asciidoc_legacy ├── tables.bbcode ├── tables.context ├── tables.djot ├── tables.docbook4 ├── tables.docbook5 ├── tables.dokuwiki ├── tables.fb2 ├── tables.haddock ├── tables.html4 ├── tables.html5 ├── tables.icml ├── tables.jats_archiving ├── tables.jats_articleauthoring ├── tables.jats_publishing ├── tables.jira ├── tables.latex ├── tables.man ├── tables.markdown ├── tables.markua ├── tables.mediawiki ├── tables.ms ├── tables.muse ├── tables.native ├── tables.opendocument ├── tables.org ├── tables.plain ├── tables.rst ├── tables.rtf ├── tables.tei ├── tables.texinfo ├── tables.textile ├── tables.txt ├── tables.typst ├── tables.vimdoc ├── tables.xwiki ├── tables.zimwiki ├── tables │ ├── nordics.html4 │ ├── nordics.html5 │ ├── nordics.jats_archiving │ ├── nordics.latex │ ├── nordics.markdown │ ├── nordics.mediawiki │ ├── nordics.native │ ├── nordics.typst │ ├── planets.html4 │ ├── planets.html5 │ ├── planets.jats_archiving │ ├── planets.latex │ ├── planets.markdown │ ├── planets.mediawiki │ ├── planets.native │ ├── planets.typst │ ├── students.html4 │ ├── students.html5 │ ├── students.jats_archiving │ ├── students.latex │ ├── students.markdown │ ├── students.mediawiki │ ├── students.native │ └── students.typst ├── test-pandoc.hs ├── testsuite.native ├── testsuite.txt ├── textile-reader.native ├── textile-reader.textile ├── tikiwiki-reader.native ├── tikiwiki-reader.tikiwiki ├── twiki-reader.native ├── twiki-reader.twiki ├── txt2tags.native ├── txt2tags.t2t ├── typst-reader.native ├── typst-reader.typ ├── undergradmath.typ ├── vimdoc │ ├── definition-lists.markdown │ ├── definition-lists.vimdoc │ ├── headers-numbered.vimdoc │ ├── headers.markdown │ ├── headers.vimdoc │ ├── vim-online-doc.markdown │ └── vim-online-doc.vimdoc ├── vimwiki-reader.native ├── vimwiki-reader.wiki ├── writer.asciidoc ├── writer.asciidoc_legacy ├── writer.bbcode ├── writer.context ├── writer.djot ├── writer.docbook4 ├── writer.docbook5 ├── writer.dokuwiki ├── writer.fb2 ├── writer.haddock ├── writer.html4 ├── writer.html5 ├── writer.icml ├── writer.jats_archiving ├── writer.jats_articleauthoring ├── writer.jats_publishing ├── writer.jira ├── writer.latex ├── writer.man ├── writer.markdown ├── writer.markua ├── writer.mediawiki ├── writer.ms ├── writer.muse ├── writer.native ├── writer.opendocument ├── writer.opml ├── writer.org ├── writer.plain ├── writer.rst ├── writer.rtf ├── writer.tei ├── writer.texinfo ├── writer.textile ├── writer.typst ├── writer.vimdoc ├── writer.xwiki ├── writer.zimwiki ├── writers-lang-and-dir.context ├── writers-lang-and-dir.latex ├── writers-lang-and-dir.native └── xlsx-reader │ ├── basic.native │ └── basic.xlsx ├── tools ├── .editorconfig ├── build-and-upload-api-docs.sh ├── build-arm.sh ├── changelog-helper.sh ├── changes_template.html ├── cliptree.gvpr ├── diff-zip.sh ├── extract-changes.lua ├── github-upload.sh ├── latex-package-dependencies.lua ├── moduledeps.lua ├── pandoc-template-mode.el ├── pandoc-xml.dtd ├── pandoc-xml.rnc ├── pandoc-xml.rng ├── pandoc-xml.xsd ├── parseTimings.pl ├── update-lua-module-docs.lua ├── update-readme.lua ├── update-translations.py ├── validate-docx.sh └── validate-docx2.sh ├── weeder.toml ├── windows ├── AdvancedWelcomeEulaDlg_Custom.wxs ├── Makefile ├── Pandoc-en-us.wxl ├── WixUI_Advanced_Custom.wxs └── pandoc.wxs ├── wml.xsd.patch └── xml-light └── Text └── Pandoc └── XML ├── Light.hs └── Light ├── Output.hs ├── Proc.hs └── Types.hs /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [jgm,tarleb,silby] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.mailmap -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/BUGS -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/COPYING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/INSTALL.md -------------------------------------------------------------------------------- /MANUAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/MANUAL.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/README.md -------------------------------------------------------------------------------- /README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/README.template -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/cabal.project -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/changelog.md -------------------------------------------------------------------------------- /citeproc/biblatex-localization/.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/UKenglish.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/USenglish.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/american.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/australian.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/brazil.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/canadian.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/hungarian.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/newzealand.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/portuges.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/serbian.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/serbianc.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/slovenian.lbx.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /citeproc/biblatex-localization/swissgerman.lbx.strings: -------------------------------------------------------------------------------- 1 | countryuk|Grossbritannien|GB 2 | -------------------------------------------------------------------------------- /data/abbreviations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/abbreviations -------------------------------------------------------------------------------- /data/creole.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/creole.lua -------------------------------------------------------------------------------- /data/default.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/default.csl -------------------------------------------------------------------------------- /data/docx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/docx/_rels/.rels -------------------------------------------------------------------------------- /data/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/epub.css -------------------------------------------------------------------------------- /data/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/init.lua -------------------------------------------------------------------------------- /data/odt/content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/odt/content.xml -------------------------------------------------------------------------------- /data/odt/manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/odt/manifest.rdf -------------------------------------------------------------------------------- /data/odt/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/odt/meta.xml -------------------------------------------------------------------------------- /data/odt/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /data/odt/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/odt/styles.xml -------------------------------------------------------------------------------- /data/pptx/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/data/pptx/_rels/.rels -------------------------------------------------------------------------------- /data/templates/default.bbcode: -------------------------------------------------------------------------------- 1 | $body$ 2 | -------------------------------------------------------------------------------- /data/templates/default.haddock: -------------------------------------------------------------------------------- 1 | $body$ 2 | -------------------------------------------------------------------------------- /data/translations/no.yaml: -------------------------------------------------------------------------------- 1 | nb.yaml -------------------------------------------------------------------------------- /doc/custom-readers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/custom-readers.md -------------------------------------------------------------------------------- /doc/custom-writers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/custom-writers.md -------------------------------------------------------------------------------- /doc/epub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/epub.md -------------------------------------------------------------------------------- /doc/extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/extras.md -------------------------------------------------------------------------------- /doc/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/faqs.md -------------------------------------------------------------------------------- /doc/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/filters.md -------------------------------------------------------------------------------- /doc/jats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/jats.md -------------------------------------------------------------------------------- /doc/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/libraries.md -------------------------------------------------------------------------------- /doc/lua-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/lua-filters.md -------------------------------------------------------------------------------- /doc/nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/nix.md -------------------------------------------------------------------------------- /doc/org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/org.md -------------------------------------------------------------------------------- /doc/pandoc-lua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/pandoc-lua.md -------------------------------------------------------------------------------- /doc/pandoc-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/pandoc-server.md -------------------------------------------------------------------------------- /doc/press.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/press.md -------------------------------------------------------------------------------- /doc/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/doc/xml.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/flake.nix -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/hie.yaml -------------------------------------------------------------------------------- /linux/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/linux/control.in -------------------------------------------------------------------------------- /macos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/macos/Makefile -------------------------------------------------------------------------------- /man/manfilter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/man/manfilter.lua -------------------------------------------------------------------------------- /man/pandoc.1.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/man/pandoc.1.after -------------------------------------------------------------------------------- /man/pandoc.1.before: -------------------------------------------------------------------------------- 1 | .SH NAME 2 | pandoc - general markup converter 3 | -------------------------------------------------------------------------------- /pandoc-cli/COPYING.md: -------------------------------------------------------------------------------- 1 | ../COPYING.md -------------------------------------------------------------------------------- /pandoc-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/pandoc-cli/README.md -------------------------------------------------------------------------------- /pandoc-lua-engine/COPYING.md: -------------------------------------------------------------------------------- 1 | ../COPYING.md -------------------------------------------------------------------------------- /pandoc-lua-engine/test/lua/module/include.tex: -------------------------------------------------------------------------------- 1 | included 2 | -------------------------------------------------------------------------------- /pandoc-lua-engine/test/lua/module/partial.test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pandoc-lua-engine/test/tables.native: -------------------------------------------------------------------------------- 1 | ../../test/tables.native -------------------------------------------------------------------------------- /pandoc-lua-engine/test/testsuite.native: -------------------------------------------------------------------------------- 1 | ../../test/testsuite.native -------------------------------------------------------------------------------- /pandoc-server/COPYING.md: -------------------------------------------------------------------------------- 1 | ../COPYING.md -------------------------------------------------------------------------------- /pandoc.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/pandoc.cabal -------------------------------------------------------------------------------- /release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/release.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/shell.nix -------------------------------------------------------------------------------- /src/Text/Pandoc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/src/Text/Pandoc.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Tests/Command.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/Tests/Command.hs -------------------------------------------------------------------------------- /test/Tests/Helpers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/Tests/Helpers.hs -------------------------------------------------------------------------------- /test/Tests/Old.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/Tests/Old.hs -------------------------------------------------------------------------------- /test/Tests/Shared.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/Tests/Shared.hs -------------------------------------------------------------------------------- /test/Tests/XML.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/Tests/XML.hs -------------------------------------------------------------------------------- /test/ansi-test.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/ansi-test.ansi -------------------------------------------------------------------------------- /test/ansi-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/ansi-test.txt -------------------------------------------------------------------------------- /test/asciidoc-reader-include.adoc: -------------------------------------------------------------------------------- 1 | This is a test! 2 | 3 | . one 4 | .. two 5 | -------------------------------------------------------------------------------- /test/asciidoc-reader-include.rb: -------------------------------------------------------------------------------- 1 | # A function 2 | def foo 3 | return 42 4 | end 5 | -------------------------------------------------------------------------------- /test/bodybg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/bodybg.gif -------------------------------------------------------------------------------- /test/command/01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/01.csv -------------------------------------------------------------------------------- /test/command/10002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10002.md -------------------------------------------------------------------------------- /test/command/10057.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10057.md -------------------------------------------------------------------------------- /test/command/10062.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10062.md -------------------------------------------------------------------------------- /test/command/10071.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10071.md -------------------------------------------------------------------------------- /test/command/10093.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10093.md -------------------------------------------------------------------------------- /test/command/10094.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10094.md -------------------------------------------------------------------------------- /test/command/10105.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10105.md -------------------------------------------------------------------------------- /test/command/10127.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10127.md -------------------------------------------------------------------------------- /test/command/10145.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10145.md -------------------------------------------------------------------------------- /test/command/10148.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10148.md -------------------------------------------------------------------------------- /test/command/10149.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10149.md -------------------------------------------------------------------------------- /test/command/10152.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10152.md -------------------------------------------------------------------------------- /test/command/10160.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10160.md -------------------------------------------------------------------------------- /test/command/10185.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10185.md -------------------------------------------------------------------------------- /test/command/10236.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10236.md -------------------------------------------------------------------------------- /test/command/10271.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10271.md -------------------------------------------------------------------------------- /test/command/10279.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10279.md -------------------------------------------------------------------------------- /test/command/10281.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10281.md -------------------------------------------------------------------------------- /test/command/10318.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10318.md -------------------------------------------------------------------------------- /test/command/10328.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10328.md -------------------------------------------------------------------------------- /test/command/10385.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10385.md -------------------------------------------------------------------------------- /test/command/10390.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10390.md -------------------------------------------------------------------------------- /test/command/10414.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10414.md -------------------------------------------------------------------------------- /test/command/10459.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10459.md -------------------------------------------------------------------------------- /test/command/10484.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10484.md -------------------------------------------------------------------------------- /test/command/10490.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10490.md -------------------------------------------------------------------------------- /test/command/10491.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10491.md -------------------------------------------------------------------------------- /test/command/10497.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10497.md -------------------------------------------------------------------------------- /test/command/10537.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10537.md -------------------------------------------------------------------------------- /test/command/10594.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10594.md -------------------------------------------------------------------------------- /test/command/10621.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10621.md -------------------------------------------------------------------------------- /test/command/10631.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10631.md -------------------------------------------------------------------------------- /test/command/10635.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10635.md -------------------------------------------------------------------------------- /test/command/10643.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10643.md -------------------------------------------------------------------------------- /test/command/10650.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10650.md -------------------------------------------------------------------------------- /test/command/10659.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10659.md -------------------------------------------------------------------------------- /test/command/10672.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10672.md -------------------------------------------------------------------------------- /test/command/10708.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10708.md -------------------------------------------------------------------------------- /test/command/10730.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10730.md -------------------------------------------------------------------------------- /test/command/10747.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10747.md -------------------------------------------------------------------------------- /test/command/10755.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10755.md -------------------------------------------------------------------------------- /test/command/10758.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10758.md -------------------------------------------------------------------------------- /test/command/10781.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10781.md -------------------------------------------------------------------------------- /test/command/10791.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10791.md -------------------------------------------------------------------------------- /test/command/10805.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10805.md -------------------------------------------------------------------------------- /test/command/10812.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10812.md -------------------------------------------------------------------------------- /test/command/10816.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10816.md -------------------------------------------------------------------------------- /test/command/10825.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10825.md -------------------------------------------------------------------------------- /test/command/10836.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10836.md -------------------------------------------------------------------------------- /test/command/10848.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10848.md -------------------------------------------------------------------------------- /test/command/10855.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10855.md -------------------------------------------------------------------------------- /test/command/10862.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10862.md -------------------------------------------------------------------------------- /test/command/10867.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10867.md -------------------------------------------------------------------------------- /test/command/10884.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10884.md -------------------------------------------------------------------------------- /test/command/10889.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10889.md -------------------------------------------------------------------------------- /test/command/10890.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10890.md -------------------------------------------------------------------------------- /test/command/10912.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10912.md -------------------------------------------------------------------------------- /test/command/10915.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10915.md -------------------------------------------------------------------------------- /test/command/10919.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10919.md -------------------------------------------------------------------------------- /test/command/10926.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10926.md -------------------------------------------------------------------------------- /test/command/10965.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10965.md -------------------------------------------------------------------------------- /test/command/10983.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10983.md -------------------------------------------------------------------------------- /test/command/10984.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/10984.md -------------------------------------------------------------------------------- /test/command/11006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11006.md -------------------------------------------------------------------------------- /test/command/11013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11013.md -------------------------------------------------------------------------------- /test/command/11014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11014.md -------------------------------------------------------------------------------- /test/command/11017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11017.md -------------------------------------------------------------------------------- /test/command/11046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11046.md -------------------------------------------------------------------------------- /test/command/11047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11047.md -------------------------------------------------------------------------------- /test/command/11048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11048.md -------------------------------------------------------------------------------- /test/command/11090.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11090.md -------------------------------------------------------------------------------- /test/command/11101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11101.md -------------------------------------------------------------------------------- /test/command/11113.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11113.md -------------------------------------------------------------------------------- /test/command/11124.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11124.md -------------------------------------------------------------------------------- /test/command/11128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11128.md -------------------------------------------------------------------------------- /test/command/11140.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11140.md -------------------------------------------------------------------------------- /test/command/11150.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11150.md -------------------------------------------------------------------------------- /test/command/11162.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11162.md -------------------------------------------------------------------------------- /test/command/11188.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11188.md -------------------------------------------------------------------------------- /test/command/11210.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11210.md -------------------------------------------------------------------------------- /test/command/11211.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11211.md -------------------------------------------------------------------------------- /test/command/11253.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11253.md -------------------------------------------------------------------------------- /test/command/1126.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1126.md -------------------------------------------------------------------------------- /test/command/11266.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11266.md -------------------------------------------------------------------------------- /test/command/11270.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11270.md -------------------------------------------------------------------------------- /test/command/11309.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11309.md -------------------------------------------------------------------------------- /test/command/11312.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11312.md -------------------------------------------------------------------------------- /test/command/11323.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/11323.md -------------------------------------------------------------------------------- /test/command/1166.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1166.md -------------------------------------------------------------------------------- /test/command/1279.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1279.md -------------------------------------------------------------------------------- /test/command/1390.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1390.md -------------------------------------------------------------------------------- /test/command/1592.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1592.md -------------------------------------------------------------------------------- /test/command/1608.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1608.md -------------------------------------------------------------------------------- /test/command/1629.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1629.md -------------------------------------------------------------------------------- /test/command/168.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/168.md -------------------------------------------------------------------------------- /test/command/1710.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1710.md -------------------------------------------------------------------------------- /test/command/1718.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1718.md -------------------------------------------------------------------------------- /test/command/1745.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1745.md -------------------------------------------------------------------------------- /test/command/1762.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1762.md -------------------------------------------------------------------------------- /test/command/1773.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1773.md -------------------------------------------------------------------------------- /test/command/1841.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1841.md -------------------------------------------------------------------------------- /test/command/1881.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1881.md -------------------------------------------------------------------------------- /test/command/1905.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/1905.md -------------------------------------------------------------------------------- /test/command/2103.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2103.md -------------------------------------------------------------------------------- /test/command/2118.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2118.md -------------------------------------------------------------------------------- /test/command/2228.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2228.md -------------------------------------------------------------------------------- /test/command/2337.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2337.md -------------------------------------------------------------------------------- /test/command/2378.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2378.md -------------------------------------------------------------------------------- /test/command/2397.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2397.md -------------------------------------------------------------------------------- /test/command/2434.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2434.md -------------------------------------------------------------------------------- /test/command/2465.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2465.md -------------------------------------------------------------------------------- /test/command/2549.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2549.md -------------------------------------------------------------------------------- /test/command/2552.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2552.md -------------------------------------------------------------------------------- /test/command/256.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/256.md -------------------------------------------------------------------------------- /test/command/2602.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2602.md -------------------------------------------------------------------------------- /test/command/2606.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2606.md -------------------------------------------------------------------------------- /test/command/262.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/262.md -------------------------------------------------------------------------------- /test/command/2649.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2649.md -------------------------------------------------------------------------------- /test/command/2662.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2662.md -------------------------------------------------------------------------------- /test/command/2834.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2834.md -------------------------------------------------------------------------------- /test/command/2874.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2874.md -------------------------------------------------------------------------------- /test/command/2994.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/2994.md -------------------------------------------------------------------------------- /test/command/3113.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3113.md -------------------------------------------------------------------------------- /test/command/3123.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3123.md -------------------------------------------------------------------------------- /test/command/3236.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3236.md -------------------------------------------------------------------------------- /test/command/3257.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3257.md -------------------------------------------------------------------------------- /test/command/3309.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3309.md -------------------------------------------------------------------------------- /test/command/3314.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3314.md -------------------------------------------------------------------------------- /test/command/3324.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3324.md -------------------------------------------------------------------------------- /test/command/3337.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3337.md -------------------------------------------------------------------------------- /test/command/3348.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3348.md -------------------------------------------------------------------------------- /test/command/3401.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3401.md -------------------------------------------------------------------------------- /test/command/3407.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3407.md -------------------------------------------------------------------------------- /test/command/3422.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3422.md -------------------------------------------------------------------------------- /test/command/3432.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3432.md -------------------------------------------------------------------------------- /test/command/3432a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3432a.md -------------------------------------------------------------------------------- /test/command/3450.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3450.md -------------------------------------------------------------------------------- /test/command/3475.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3475.md -------------------------------------------------------------------------------- /test/command/3487.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3487.md -------------------------------------------------------------------------------- /test/command/3494.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3494.md -------------------------------------------------------------------------------- /test/command/3497.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3497.md -------------------------------------------------------------------------------- /test/command/3499.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3499.md -------------------------------------------------------------------------------- /test/command/3510-export.latex: -------------------------------------------------------------------------------- 1 | \emph{Hello} -------------------------------------------------------------------------------- /test/command/3510.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3510.md -------------------------------------------------------------------------------- /test/command/3511.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3511.md -------------------------------------------------------------------------------- /test/command/3512.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3512.md -------------------------------------------------------------------------------- /test/command/3516.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3516.md -------------------------------------------------------------------------------- /test/command/3518.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3518.md -------------------------------------------------------------------------------- /test/command/3523.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3523.md -------------------------------------------------------------------------------- /test/command/3526.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3526.md -------------------------------------------------------------------------------- /test/command/3529.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3529.md -------------------------------------------------------------------------------- /test/command/3530.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3530.md -------------------------------------------------------------------------------- /test/command/3531.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3531.md -------------------------------------------------------------------------------- /test/command/3534.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3534.md -------------------------------------------------------------------------------- /test/command/3537.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3537.md -------------------------------------------------------------------------------- /test/command/3539.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3539.md -------------------------------------------------------------------------------- /test/command/3558.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3558.md -------------------------------------------------------------------------------- /test/command/3568.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3568.md -------------------------------------------------------------------------------- /test/command/3570.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3570.md -------------------------------------------------------------------------------- /test/command/3577.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3577.md -------------------------------------------------------------------------------- /test/command/3585.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3585.md -------------------------------------------------------------------------------- /test/command/3587.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3587.md -------------------------------------------------------------------------------- /test/command/3596.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3596.md -------------------------------------------------------------------------------- /test/command/3615.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3615.md -------------------------------------------------------------------------------- /test/command/3619.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3619.md -------------------------------------------------------------------------------- /test/command/3630.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3630.md -------------------------------------------------------------------------------- /test/command/3667.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3667.md -------------------------------------------------------------------------------- /test/command/3674.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3674.md -------------------------------------------------------------------------------- /test/command/3675.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3675.md -------------------------------------------------------------------------------- /test/command/3681.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3681.md -------------------------------------------------------------------------------- /test/command/3690.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3690.md -------------------------------------------------------------------------------- /test/command/3701.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3701.md -------------------------------------------------------------------------------- /test/command/3706.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3706.md -------------------------------------------------------------------------------- /test/command/3708.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3708.md -------------------------------------------------------------------------------- /test/command/3715.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3715.md -------------------------------------------------------------------------------- /test/command/3716.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3716.md -------------------------------------------------------------------------------- /test/command/3730.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3730.md -------------------------------------------------------------------------------- /test/command/3733.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3733.md -------------------------------------------------------------------------------- /test/command/3734.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3734.md -------------------------------------------------------------------------------- /test/command/3736.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3736.md -------------------------------------------------------------------------------- /test/command/3752.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3752.md -------------------------------------------------------------------------------- /test/command/3755.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3755.md -------------------------------------------------------------------------------- /test/command/3771.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3771.md -------------------------------------------------------------------------------- /test/command/3773.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3773.md -------------------------------------------------------------------------------- /test/command/3779.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3779.md -------------------------------------------------------------------------------- /test/command/3792.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3792.md -------------------------------------------------------------------------------- /test/command/3794.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3794.md -------------------------------------------------------------------------------- /test/command/3803.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3803.md -------------------------------------------------------------------------------- /test/command/3804.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3804.md -------------------------------------------------------------------------------- /test/command/3816.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3816.md -------------------------------------------------------------------------------- /test/command/3824.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3824.md -------------------------------------------------------------------------------- /test/command/3840.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3840.md -------------------------------------------------------------------------------- /test/command/3853.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3853.md -------------------------------------------------------------------------------- /test/command/3880.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3880.md -------------------------------------------------------------------------------- /test/command/3880.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /test/command/3916.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3916.md -------------------------------------------------------------------------------- /test/command/3937.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3937.md -------------------------------------------------------------------------------- /test/command/3947.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3947.md -------------------------------------------------------------------------------- /test/command/3958.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3958.md -------------------------------------------------------------------------------- /test/command/3968.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3968.md -------------------------------------------------------------------------------- /test/command/3971.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3971.md -------------------------------------------------------------------------------- /test/command/3971b.tex: -------------------------------------------------------------------------------- 1 | \newcommand{\code}[1]{\texttt{#1}} 2 | \begin{document} 3 | -------------------------------------------------------------------------------- /test/command/3974.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3974.md -------------------------------------------------------------------------------- /test/command/3978.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3978.md -------------------------------------------------------------------------------- /test/command/3983.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3983.md -------------------------------------------------------------------------------- /test/command/3989.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/3989.md -------------------------------------------------------------------------------- /test/command/4007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4007.md -------------------------------------------------------------------------------- /test/command/4012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4012.md -------------------------------------------------------------------------------- /test/command/4016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4016.md -------------------------------------------------------------------------------- /test/command/4019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4019.md -------------------------------------------------------------------------------- /test/command/4038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4038.md -------------------------------------------------------------------------------- /test/command/4054.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4054.md -------------------------------------------------------------------------------- /test/command/4056.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4056.md -------------------------------------------------------------------------------- /test/command/4061.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4061.md -------------------------------------------------------------------------------- /test/command/4062.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4062.md -------------------------------------------------------------------------------- /test/command/4063.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4063.md -------------------------------------------------------------------------------- /test/command/4068.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4068.md -------------------------------------------------------------------------------- /test/command/4091.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4091.md -------------------------------------------------------------------------------- /test/command/4102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4102.md -------------------------------------------------------------------------------- /test/command/4113.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4113.md -------------------------------------------------------------------------------- /test/command/4119.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4119.md -------------------------------------------------------------------------------- /test/command/4125.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4125.md -------------------------------------------------------------------------------- /test/command/4134.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4134.md -------------------------------------------------------------------------------- /test/command/4156.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4156.md -------------------------------------------------------------------------------- /test/command/4159.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4159.md -------------------------------------------------------------------------------- /test/command/4162.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4162.md -------------------------------------------------------------------------------- /test/command/4164.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4164.md -------------------------------------------------------------------------------- /test/command/4171.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4171.md -------------------------------------------------------------------------------- /test/command/4172.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4172.md -------------------------------------------------------------------------------- /test/command/4183.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4183.md -------------------------------------------------------------------------------- /test/command/4186.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4186.md -------------------------------------------------------------------------------- /test/command/4193.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4193.md -------------------------------------------------------------------------------- /test/command/4199.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4199.md -------------------------------------------------------------------------------- /test/command/4208.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4208.md -------------------------------------------------------------------------------- /test/command/4235.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4235.md -------------------------------------------------------------------------------- /test/command/4240.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4240.md -------------------------------------------------------------------------------- /test/command/4253.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4253.md -------------------------------------------------------------------------------- /test/command/4254.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4254.md -------------------------------------------------------------------------------- /test/command/4280.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4280.md -------------------------------------------------------------------------------- /test/command/4281.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4281.md -------------------------------------------------------------------------------- /test/command/4284.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4284.md -------------------------------------------------------------------------------- /test/command/4306.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4306.md -------------------------------------------------------------------------------- /test/command/4320.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4320.md -------------------------------------------------------------------------------- /test/command/4374.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4374.md -------------------------------------------------------------------------------- /test/command/4382.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4382.md -------------------------------------------------------------------------------- /test/command/4420.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4420.md -------------------------------------------------------------------------------- /test/command/4424.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4424.md -------------------------------------------------------------------------------- /test/command/4442.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4442.md -------------------------------------------------------------------------------- /test/command/4454.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4454.md -------------------------------------------------------------------------------- /test/command/4465.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4465.md -------------------------------------------------------------------------------- /test/command/4470.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4470.md -------------------------------------------------------------------------------- /test/command/4499.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4499.md -------------------------------------------------------------------------------- /test/command/4513.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4513.md -------------------------------------------------------------------------------- /test/command/4527.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4527.md -------------------------------------------------------------------------------- /test/command/4528.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4528.md -------------------------------------------------------------------------------- /test/command/4529.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4529.md -------------------------------------------------------------------------------- /test/command/4545.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4545.md -------------------------------------------------------------------------------- /test/command/4550.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4550.md -------------------------------------------------------------------------------- /test/command/4553.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4553.md -------------------------------------------------------------------------------- /test/command/4564.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4564.md -------------------------------------------------------------------------------- /test/command/4576.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4576.md -------------------------------------------------------------------------------- /test/command/4578.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4578.md -------------------------------------------------------------------------------- /test/command/4579.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4579.md -------------------------------------------------------------------------------- /test/command/4589.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4589.md -------------------------------------------------------------------------------- /test/command/4594.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4594.md -------------------------------------------------------------------------------- /test/command/4598.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4598.md -------------------------------------------------------------------------------- /test/command/4624.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4624.md -------------------------------------------------------------------------------- /test/command/4635.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4635.md -------------------------------------------------------------------------------- /test/command/4637.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4637.md -------------------------------------------------------------------------------- /test/command/4639.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4639.md -------------------------------------------------------------------------------- /test/command/4653.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4653.md -------------------------------------------------------------------------------- /test/command/4667.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4667.md -------------------------------------------------------------------------------- /test/command/4669.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4669.md -------------------------------------------------------------------------------- /test/command/4677.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4677.md -------------------------------------------------------------------------------- /test/command/4690.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4690.md -------------------------------------------------------------------------------- /test/command/4715.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4715.md -------------------------------------------------------------------------------- /test/command/4722.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4722.md -------------------------------------------------------------------------------- /test/command/4742.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4742.md -------------------------------------------------------------------------------- /test/command/4743.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4743.md -------------------------------------------------------------------------------- /test/command/4746.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4746.md -------------------------------------------------------------------------------- /test/command/4748.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4748.md -------------------------------------------------------------------------------- /test/command/4768.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4768.md -------------------------------------------------------------------------------- /test/command/4781.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4781.md -------------------------------------------------------------------------------- /test/command/4794.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4794.md -------------------------------------------------------------------------------- /test/command/4811.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4811.md -------------------------------------------------------------------------------- /test/command/4817.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4817.md -------------------------------------------------------------------------------- /test/command/4819.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4819.md -------------------------------------------------------------------------------- /test/command/4832.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4832.md -------------------------------------------------------------------------------- /test/command/4833.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4833.md -------------------------------------------------------------------------------- /test/command/4845.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4845.md -------------------------------------------------------------------------------- /test/command/4848.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4848.md -------------------------------------------------------------------------------- /test/command/4860.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4860.md -------------------------------------------------------------------------------- /test/command/4877.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4877.md -------------------------------------------------------------------------------- /test/command/4880.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4880.md -------------------------------------------------------------------------------- /test/command/4885.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4885.md -------------------------------------------------------------------------------- /test/command/4908.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4908.md -------------------------------------------------------------------------------- /test/command/4913.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4913.md -------------------------------------------------------------------------------- /test/command/4919.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4919.md -------------------------------------------------------------------------------- /test/command/4928.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4928.md -------------------------------------------------------------------------------- /test/command/4933.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4933.md -------------------------------------------------------------------------------- /test/command/4960.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/4960.md -------------------------------------------------------------------------------- /test/command/5010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5010.md -------------------------------------------------------------------------------- /test/command/5014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5014.md -------------------------------------------------------------------------------- /test/command/5039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5039.md -------------------------------------------------------------------------------- /test/command/5050.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5050.md -------------------------------------------------------------------------------- /test/command/5053.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5053.md -------------------------------------------------------------------------------- /test/command/5071.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5071.md -------------------------------------------------------------------------------- /test/command/5072.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5072.md -------------------------------------------------------------------------------- /test/command/5079.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5079.md -------------------------------------------------------------------------------- /test/command/5080.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5080.md -------------------------------------------------------------------------------- /test/command/5081.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5081.md -------------------------------------------------------------------------------- /test/command/5099.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5099.md -------------------------------------------------------------------------------- /test/command/5107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5107.md -------------------------------------------------------------------------------- /test/command/5116.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5116.md -------------------------------------------------------------------------------- /test/command/5119.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5119.md -------------------------------------------------------------------------------- /test/command/512.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/512.md -------------------------------------------------------------------------------- /test/command/5121.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5121.md -------------------------------------------------------------------------------- /test/command/5128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5128.md -------------------------------------------------------------------------------- /test/command/5177.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5177.md -------------------------------------------------------------------------------- /test/command/5178.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5178.md -------------------------------------------------------------------------------- /test/command/5182.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5182.md -------------------------------------------------------------------------------- /test/command/5182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5182.txt -------------------------------------------------------------------------------- /test/command/5195.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5195.md -------------------------------------------------------------------------------- /test/command/5233.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5233.md -------------------------------------------------------------------------------- /test/command/5241.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5241.md -------------------------------------------------------------------------------- /test/command/5271.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5271.md -------------------------------------------------------------------------------- /test/command/5285.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5285.md -------------------------------------------------------------------------------- /test/command/5304.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5304.md -------------------------------------------------------------------------------- /test/command/5321.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5321.md -------------------------------------------------------------------------------- /test/command/5340.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5340.md -------------------------------------------------------------------------------- /test/command/5360.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5360.md -------------------------------------------------------------------------------- /test/command/5367.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5367.md -------------------------------------------------------------------------------- /test/command/5368.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5368.md -------------------------------------------------------------------------------- /test/command/5369.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5369.md -------------------------------------------------------------------------------- /test/command/5407.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5407.md -------------------------------------------------------------------------------- /test/command/5416.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5416.md -------------------------------------------------------------------------------- /test/command/5420.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5420.md -------------------------------------------------------------------------------- /test/command/5439.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5439.md -------------------------------------------------------------------------------- /test/command/5446.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5446.md -------------------------------------------------------------------------------- /test/command/5476.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5476.md -------------------------------------------------------------------------------- /test/command/5495.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5495.md -------------------------------------------------------------------------------- /test/command/5519.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5519.md -------------------------------------------------------------------------------- /test/command/5529.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5529.md -------------------------------------------------------------------------------- /test/command/5540.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5540.md -------------------------------------------------------------------------------- /test/command/5543.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5543.md -------------------------------------------------------------------------------- /test/command/5549.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5549.md -------------------------------------------------------------------------------- /test/command/5565.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5565.md -------------------------------------------------------------------------------- /test/command/5566.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5566.md -------------------------------------------------------------------------------- /test/command/5574.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5574.md -------------------------------------------------------------------------------- /test/command/5619.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5619.md -------------------------------------------------------------------------------- /test/command/5620.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5620.md -------------------------------------------------------------------------------- /test/command/5627.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5627.md -------------------------------------------------------------------------------- /test/command/5635.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5635.md -------------------------------------------------------------------------------- /test/command/5642.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5642.md -------------------------------------------------------------------------------- /test/command/5650.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5650.md -------------------------------------------------------------------------------- /test/command/5654.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5654.md -------------------------------------------------------------------------------- /test/command/5655.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5655.md -------------------------------------------------------------------------------- /test/command/5682.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5682.md -------------------------------------------------------------------------------- /test/command/5684.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5684.md -------------------------------------------------------------------------------- /test/command/5686.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5686.md -------------------------------------------------------------------------------- /test/command/5690.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5690.md -------------------------------------------------------------------------------- /test/command/5700.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5700.md -------------------------------------------------------------------------------- /test/command/5705.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5705.md -------------------------------------------------------------------------------- /test/command/5708.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5708.md -------------------------------------------------------------------------------- /test/command/5711.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5711.md -------------------------------------------------------------------------------- /test/command/5714.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5714.md -------------------------------------------------------------------------------- /test/command/5740.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5740.md -------------------------------------------------------------------------------- /test/command/5753.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5753.md -------------------------------------------------------------------------------- /test/command/5793.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5793.md -------------------------------------------------------------------------------- /test/command/5795.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5795.md -------------------------------------------------------------------------------- /test/command/5797.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5797.md -------------------------------------------------------------------------------- /test/command/5805.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5805.md -------------------------------------------------------------------------------- /test/command/5813.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5813.md -------------------------------------------------------------------------------- /test/command/5819.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5819.md -------------------------------------------------------------------------------- /test/command/5836.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5836.md -------------------------------------------------------------------------------- /test/command/5845.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5845.md -------------------------------------------------------------------------------- /test/command/5846.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5846.md -------------------------------------------------------------------------------- /test/command/5857.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5857.md -------------------------------------------------------------------------------- /test/command/5876.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5876.md -------------------------------------------------------------------------------- /test/command/5876.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | desc: Found in working directory. 3 | --- 4 | -------------------------------------------------------------------------------- /test/command/5878.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5878.md -------------------------------------------------------------------------------- /test/command/5881.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5881.md -------------------------------------------------------------------------------- /test/command/5885.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5885.md -------------------------------------------------------------------------------- /test/command/5898.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5898.md -------------------------------------------------------------------------------- /test/command/5899.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5899.md -------------------------------------------------------------------------------- /test/command/5904.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5904.md -------------------------------------------------------------------------------- /test/command/5918.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5918.md -------------------------------------------------------------------------------- /test/command/5936.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5936.md -------------------------------------------------------------------------------- /test/command/5967.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5967.md -------------------------------------------------------------------------------- /test/command/5986.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/5986.md -------------------------------------------------------------------------------- /test/command/6009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6009.md -------------------------------------------------------------------------------- /test/command/6021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6021.md -------------------------------------------------------------------------------- /test/command/6026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6026.md -------------------------------------------------------------------------------- /test/command/6030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6030.md -------------------------------------------------------------------------------- /test/command/6033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6033.md -------------------------------------------------------------------------------- /test/command/6034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6034.md -------------------------------------------------------------------------------- /test/command/6043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6043.md -------------------------------------------------------------------------------- /test/command/6062.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6062.md -------------------------------------------------------------------------------- /test/command/6107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6107.md -------------------------------------------------------------------------------- /test/command/6114.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6114.md -------------------------------------------------------------------------------- /test/command/6119.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6119.md -------------------------------------------------------------------------------- /test/command/6133.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6133.md -------------------------------------------------------------------------------- /test/command/6137.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6137.md -------------------------------------------------------------------------------- /test/command/6194.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6194.md -------------------------------------------------------------------------------- /test/command/6265.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6265.md -------------------------------------------------------------------------------- /test/command/6285.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6285.md -------------------------------------------------------------------------------- /test/command/6288.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6288.md -------------------------------------------------------------------------------- /test/command/6296.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6296.md -------------------------------------------------------------------------------- /test/command/6308.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6308.md -------------------------------------------------------------------------------- /test/command/6324.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6324.md -------------------------------------------------------------------------------- /test/command/6348.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6348.md -------------------------------------------------------------------------------- /test/command/6350.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6350.md -------------------------------------------------------------------------------- /test/command/6360.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6360.md -------------------------------------------------------------------------------- /test/command/6367.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6367.md -------------------------------------------------------------------------------- /test/command/6384.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6384.md -------------------------------------------------------------------------------- /test/command/6385.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6385.md -------------------------------------------------------------------------------- /test/command/6388.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6388.md -------------------------------------------------------------------------------- /test/command/6424.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6424.md -------------------------------------------------------------------------------- /test/command/6441.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6441.md -------------------------------------------------------------------------------- /test/command/645.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/645.md -------------------------------------------------------------------------------- /test/command/6466.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6466.md -------------------------------------------------------------------------------- /test/command/6481.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6481.md -------------------------------------------------------------------------------- /test/command/6541.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6541.md -------------------------------------------------------------------------------- /test/command/6549.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6549.md -------------------------------------------------------------------------------- /test/command/6588.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6588.md -------------------------------------------------------------------------------- /test/command/6620.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6620.md -------------------------------------------------------------------------------- /test/command/6658.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6658.md -------------------------------------------------------------------------------- /test/command/6675.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6675.md -------------------------------------------------------------------------------- /test/command/6699.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6699.md -------------------------------------------------------------------------------- /test/command/6709.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6709.md -------------------------------------------------------------------------------- /test/command/6719.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6719.md -------------------------------------------------------------------------------- /test/command/6723.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6723.md -------------------------------------------------------------------------------- /test/command/6739.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6739.md -------------------------------------------------------------------------------- /test/command/6740.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6740.md -------------------------------------------------------------------------------- /test/command/6741.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6741.md -------------------------------------------------------------------------------- /test/command/6752.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6752.md -------------------------------------------------------------------------------- /test/command/6755.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6755.md -------------------------------------------------------------------------------- /test/command/6765.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6765.md -------------------------------------------------------------------------------- /test/command/6768.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6768.md -------------------------------------------------------------------------------- /test/command/6774.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6774.md -------------------------------------------------------------------------------- /test/command/6783.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6783.md -------------------------------------------------------------------------------- /test/command/6791.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6791.md -------------------------------------------------------------------------------- /test/command/6792.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6792.md -------------------------------------------------------------------------------- /test/command/6796.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6796.md -------------------------------------------------------------------------------- /test/command/6802.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6802.md -------------------------------------------------------------------------------- /test/command/6821.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6821.md -------------------------------------------------------------------------------- /test/command/6836.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6836.md -------------------------------------------------------------------------------- /test/command/6837.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6837.md -------------------------------------------------------------------------------- /test/command/6844.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6844.md -------------------------------------------------------------------------------- /test/command/6855.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6855.md -------------------------------------------------------------------------------- /test/command/6858.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6858.md -------------------------------------------------------------------------------- /test/command/6869.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6869.md -------------------------------------------------------------------------------- /test/command/6873.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6873.md -------------------------------------------------------------------------------- /test/command/6890.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6890.md -------------------------------------------------------------------------------- /test/command/6925.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6925.md -------------------------------------------------------------------------------- /test/command/6948.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6948.md -------------------------------------------------------------------------------- /test/command/6951.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6951.md -------------------------------------------------------------------------------- /test/command/6958.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6958.md -------------------------------------------------------------------------------- /test/command/6959.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6959.md -------------------------------------------------------------------------------- /test/command/6970.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6970.md -------------------------------------------------------------------------------- /test/command/6992.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6992.md -------------------------------------------------------------------------------- /test/command/6993.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/6993.md -------------------------------------------------------------------------------- /test/command/7003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7003.md -------------------------------------------------------------------------------- /test/command/7006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7006.md -------------------------------------------------------------------------------- /test/command/7009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7009.md -------------------------------------------------------------------------------- /test/command/7016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7016.md -------------------------------------------------------------------------------- /test/command/7041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7041.md -------------------------------------------------------------------------------- /test/command/7042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7042.md -------------------------------------------------------------------------------- /test/command/7064.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7064.md -------------------------------------------------------------------------------- /test/command/7067.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7067.md -------------------------------------------------------------------------------- /test/command/7080.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7080.md -------------------------------------------------------------------------------- /test/command/7092.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7092.md -------------------------------------------------------------------------------- /test/command/7099.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7099.md -------------------------------------------------------------------------------- /test/command/7112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7112.md -------------------------------------------------------------------------------- /test/command/7129.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7129.md -------------------------------------------------------------------------------- /test/command/7132.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7132.md -------------------------------------------------------------------------------- /test/command/7134.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7134.md -------------------------------------------------------------------------------- /test/command/7145.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7145.md -------------------------------------------------------------------------------- /test/command/7155.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7155.md -------------------------------------------------------------------------------- /test/command/7172.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7172.md -------------------------------------------------------------------------------- /test/command/7173.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7173.md -------------------------------------------------------------------------------- /test/command/7181.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7181.md -------------------------------------------------------------------------------- /test/command/7208.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7208.md -------------------------------------------------------------------------------- /test/command/7214.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7214.md -------------------------------------------------------------------------------- /test/command/7216.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7216.md -------------------------------------------------------------------------------- /test/command/7219.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7219.md -------------------------------------------------------------------------------- /test/command/7266.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7266.md -------------------------------------------------------------------------------- /test/command/7272.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7272.md -------------------------------------------------------------------------------- /test/command/7278.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7278.md -------------------------------------------------------------------------------- /test/command/7282.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7282.md -------------------------------------------------------------------------------- /test/command/7288.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7288.md -------------------------------------------------------------------------------- /test/command/7299.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7299.md -------------------------------------------------------------------------------- /test/command/7321.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7321.md -------------------------------------------------------------------------------- /test/command/7323.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7323.md -------------------------------------------------------------------------------- /test/command/7324.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7324.md -------------------------------------------------------------------------------- /test/command/7326.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7326.md -------------------------------------------------------------------------------- /test/command/7329.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7329.md -------------------------------------------------------------------------------- /test/command/7339.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7339.md -------------------------------------------------------------------------------- /test/command/7340.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7340.md -------------------------------------------------------------------------------- /test/command/7376.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7376.md -------------------------------------------------------------------------------- /test/command/7394.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7394.md -------------------------------------------------------------------------------- /test/command/7397.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7397.md -------------------------------------------------------------------------------- /test/command/7400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7400.md -------------------------------------------------------------------------------- /test/command/7416.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7416.md -------------------------------------------------------------------------------- /test/command/7434.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7434.md -------------------------------------------------------------------------------- /test/command/7436.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7436.md -------------------------------------------------------------------------------- /test/command/7473.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7473.md -------------------------------------------------------------------------------- /test/command/7482.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7482.md -------------------------------------------------------------------------------- /test/command/7494.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7494.md -------------------------------------------------------------------------------- /test/command/7497.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7497.md -------------------------------------------------------------------------------- /test/command/7512.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7512.md -------------------------------------------------------------------------------- /test/command/7520.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7520.md -------------------------------------------------------------------------------- /test/command/7521.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7521.md -------------------------------------------------------------------------------- /test/command/7525.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7525.md -------------------------------------------------------------------------------- /test/command/7529.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7529.md -------------------------------------------------------------------------------- /test/command/7546.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7546.md -------------------------------------------------------------------------------- /test/command/7557.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7557.md -------------------------------------------------------------------------------- /test/command/7568.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7568.md -------------------------------------------------------------------------------- /test/command/7573.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7573.md -------------------------------------------------------------------------------- /test/command/7589.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7589.md -------------------------------------------------------------------------------- /test/command/7615.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7615.md -------------------------------------------------------------------------------- /test/command/7623.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7623.md -------------------------------------------------------------------------------- /test/command/7632.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7632.md -------------------------------------------------------------------------------- /test/command/7668.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7668.md -------------------------------------------------------------------------------- /test/command/7678.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7678.md -------------------------------------------------------------------------------- /test/command/7691.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7691.md -------------------------------------------------------------------------------- /test/command/7692.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7692.md -------------------------------------------------------------------------------- /test/command/7697.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7697.md -------------------------------------------------------------------------------- /test/command/7713.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7713.md -------------------------------------------------------------------------------- /test/command/7723.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7723.md -------------------------------------------------------------------------------- /test/command/7726.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7726.md -------------------------------------------------------------------------------- /test/command/7738.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7738.md -------------------------------------------------------------------------------- /test/command/7743.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7743.md -------------------------------------------------------------------------------- /test/command/7761.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7761.md -------------------------------------------------------------------------------- /test/command/7778.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7778.md -------------------------------------------------------------------------------- /test/command/7803.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7803.md -------------------------------------------------------------------------------- /test/command/7808.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7808.md -------------------------------------------------------------------------------- /test/command/7810.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7810.md -------------------------------------------------------------------------------- /test/command/7813.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7813.md -------------------------------------------------------------------------------- /test/command/7826.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7826.md -------------------------------------------------------------------------------- /test/command/7847.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7847.md -------------------------------------------------------------------------------- /test/command/7857.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7857.md -------------------------------------------------------------------------------- /test/command/7858.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7858.md -------------------------------------------------------------------------------- /test/command/7861.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7861.md -------------------------------------------------------------------------------- /test/command/7861.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/command/7861/metadata/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/command/7863.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7863.md -------------------------------------------------------------------------------- /test/command/7871.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7871.md -------------------------------------------------------------------------------- /test/command/7884.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7884.md -------------------------------------------------------------------------------- /test/command/7894.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7894.md -------------------------------------------------------------------------------- /test/command/7919.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7919.md -------------------------------------------------------------------------------- /test/command/7920.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7920.md -------------------------------------------------------------------------------- /test/command/7930.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7930.md -------------------------------------------------------------------------------- /test/command/7939.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7939.md -------------------------------------------------------------------------------- /test/command/7941.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7941.md -------------------------------------------------------------------------------- /test/command/7953.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7953.md -------------------------------------------------------------------------------- /test/command/7965.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/7965.md -------------------------------------------------------------------------------- /test/command/8003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8003.md -------------------------------------------------------------------------------- /test/command/8011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8011.md -------------------------------------------------------------------------------- /test/command/8028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8028.md -------------------------------------------------------------------------------- /test/command/8047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8047.md -------------------------------------------------------------------------------- /test/command/8070.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8070.md -------------------------------------------------------------------------------- /test/command/8079.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8079.md -------------------------------------------------------------------------------- /test/command/8088.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8088.md -------------------------------------------------------------------------------- /test/command/8097.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8097.md -------------------------------------------------------------------------------- /test/command/8098.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8098.md -------------------------------------------------------------------------------- /test/command/8110.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8110.md -------------------------------------------------------------------------------- /test/command/8131.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8131.md -------------------------------------------------------------------------------- /test/command/8150.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8150.md -------------------------------------------------------------------------------- /test/command/8170.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8170.md -------------------------------------------------------------------------------- /test/command/8174.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8174.md -------------------------------------------------------------------------------- /test/command/8178.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8178.md -------------------------------------------------------------------------------- /test/command/8179.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8179.md -------------------------------------------------------------------------------- /test/command/8182.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8182.md -------------------------------------------------------------------------------- /test/command/8201.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8201.md -------------------------------------------------------------------------------- /test/command/8204.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8204.md -------------------------------------------------------------------------------- /test/command/8216.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8216.md -------------------------------------------------------------------------------- /test/command/8219.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8219.md -------------------------------------------------------------------------------- /test/command/8236.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8236.md -------------------------------------------------------------------------------- /test/command/8243.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8243.md -------------------------------------------------------------------------------- /test/command/8251.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8251.md -------------------------------------------------------------------------------- /test/command/8254.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8254.md -------------------------------------------------------------------------------- /test/command/8256.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8256.md -------------------------------------------------------------------------------- /test/command/8257.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8257.md -------------------------------------------------------------------------------- /test/command/8281.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8281.md -------------------------------------------------------------------------------- /test/command/8302.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8302.md -------------------------------------------------------------------------------- /test/command/8307.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8307.md -------------------------------------------------------------------------------- /test/command/8344.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8344.md -------------------------------------------------------------------------------- /test/command/8354.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8354.md -------------------------------------------------------------------------------- /test/command/8364.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8364.md -------------------------------------------------------------------------------- /test/command/8365.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8365.md -------------------------------------------------------------------------------- /test/command/8380.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8380.md -------------------------------------------------------------------------------- /test/command/8402.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8402.md -------------------------------------------------------------------------------- /test/command/8437.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8437.md -------------------------------------------------------------------------------- /test/command/8486.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8486.md -------------------------------------------------------------------------------- /test/command/8487.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8487.md -------------------------------------------------------------------------------- /test/command/8504.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8504.md -------------------------------------------------------------------------------- /test/command/8508.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8508.md -------------------------------------------------------------------------------- /test/command/8511.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8511.md -------------------------------------------------------------------------------- /test/command/8513.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8513.md -------------------------------------------------------------------------------- /test/command/853.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/853.md -------------------------------------------------------------------------------- /test/command/8534.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8534.md -------------------------------------------------------------------------------- /test/command/8573.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8573.md -------------------------------------------------------------------------------- /test/command/8611.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8611.md -------------------------------------------------------------------------------- /test/command/8638.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8638.md -------------------------------------------------------------------------------- /test/command/8652.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8652.md -------------------------------------------------------------------------------- /test/command/8653.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8653.md -------------------------------------------------------------------------------- /test/command/8659.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8659.md -------------------------------------------------------------------------------- /test/command/8661.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8661.md -------------------------------------------------------------------------------- /test/command/8665.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8665.md -------------------------------------------------------------------------------- /test/command/8666.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8666.md -------------------------------------------------------------------------------- /test/command/8681.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8681.md -------------------------------------------------------------------------------- /test/command/8689.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8689.md -------------------------------------------------------------------------------- /test/command/8711.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8711.md -------------------------------------------------------------------------------- /test/command/8738.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8738.md -------------------------------------------------------------------------------- /test/command/8745.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8745.md -------------------------------------------------------------------------------- /test/command/8764.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8764.md -------------------------------------------------------------------------------- /test/command/8777.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8777.md -------------------------------------------------------------------------------- /test/command/8789.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8789.md -------------------------------------------------------------------------------- /test/command/8853.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8853.md -------------------------------------------------------------------------------- /test/command/8863.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8863.md -------------------------------------------------------------------------------- /test/command/8867.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8867.md -------------------------------------------------------------------------------- /test/command/8869.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8869.md -------------------------------------------------------------------------------- /test/command/8872.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8872.md -------------------------------------------------------------------------------- /test/command/8948.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8948.md -------------------------------------------------------------------------------- /test/command/8956.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8956.md -------------------------------------------------------------------------------- /test/command/8957.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8957.md -------------------------------------------------------------------------------- /test/command/8966.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8966.md -------------------------------------------------------------------------------- /test/command/8981.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8981.md -------------------------------------------------------------------------------- /test/command/8984.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8984.md -------------------------------------------------------------------------------- /test/command/8992.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8992.md -------------------------------------------------------------------------------- /test/command/8997.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/8997.md -------------------------------------------------------------------------------- /test/command/9000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9000.md -------------------------------------------------------------------------------- /test/command/9002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9002.md -------------------------------------------------------------------------------- /test/command/9017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9017.md -------------------------------------------------------------------------------- /test/command/9021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9021.md -------------------------------------------------------------------------------- /test/command/9038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9038.md -------------------------------------------------------------------------------- /test/command/9042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9042.md -------------------------------------------------------------------------------- /test/command/9043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9043.md -------------------------------------------------------------------------------- /test/command/9045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9045.md -------------------------------------------------------------------------------- /test/command/9047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9047.md -------------------------------------------------------------------------------- /test/command/9088.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9088.md -------------------------------------------------------------------------------- /test/command/9090.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9090.md -------------------------------------------------------------------------------- /test/command/9121.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9121.md -------------------------------------------------------------------------------- /test/command/9150.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9150.md -------------------------------------------------------------------------------- /test/command/9159.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9159.md -------------------------------------------------------------------------------- /test/command/9171.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9171.md -------------------------------------------------------------------------------- /test/command/9193.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9193.md -------------------------------------------------------------------------------- /test/command/9196.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9196.md -------------------------------------------------------------------------------- /test/command/9201.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9201.md -------------------------------------------------------------------------------- /test/command/9202.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9202.md -------------------------------------------------------------------------------- /test/command/9209.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9209.md -------------------------------------------------------------------------------- /test/command/9218.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9218.md -------------------------------------------------------------------------------- /test/command/9236.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9236.md -------------------------------------------------------------------------------- /test/command/9275.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9275.md -------------------------------------------------------------------------------- /test/command/9279.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9279.md -------------------------------------------------------------------------------- /test/command/9293.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9293.md -------------------------------------------------------------------------------- /test/command/934.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/934.md -------------------------------------------------------------------------------- /test/command/9346.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9346.md -------------------------------------------------------------------------------- /test/command/9350.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9350.md -------------------------------------------------------------------------------- /test/command/9358.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9358.md -------------------------------------------------------------------------------- /test/command/9366.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9366.md -------------------------------------------------------------------------------- /test/command/9371.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9371.md -------------------------------------------------------------------------------- /test/command/9386.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9386.md -------------------------------------------------------------------------------- /test/command/9387.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9387.md -------------------------------------------------------------------------------- /test/command/9388.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9388.md -------------------------------------------------------------------------------- /test/command/9391.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9391.md -------------------------------------------------------------------------------- /test/command/9420.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9420.md -------------------------------------------------------------------------------- /test/command/9420.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9420.svg -------------------------------------------------------------------------------- /test/command/9445.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9445.md -------------------------------------------------------------------------------- /test/command/9452.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9452.md -------------------------------------------------------------------------------- /test/command/9467.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9467.md -------------------------------------------------------------------------------- /test/command/9467.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9467.svg -------------------------------------------------------------------------------- /test/command/9472.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9472.md -------------------------------------------------------------------------------- /test/command/9475.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9475.md -------------------------------------------------------------------------------- /test/command/9478.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9478.md -------------------------------------------------------------------------------- /test/command/9481.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9481.md -------------------------------------------------------------------------------- /test/command/9516.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9516.md -------------------------------------------------------------------------------- /test/command/9517.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9517.md -------------------------------------------------------------------------------- /test/command/9555.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9555.md -------------------------------------------------------------------------------- /test/command/9569.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9569.md -------------------------------------------------------------------------------- /test/command/9576.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9576.md -------------------------------------------------------------------------------- /test/command/9579.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9579.md -------------------------------------------------------------------------------- /test/command/9585.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9585.md -------------------------------------------------------------------------------- /test/command/9586.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9586.md -------------------------------------------------------------------------------- /test/command/9597.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9597.md -------------------------------------------------------------------------------- /test/command/9603.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9603.md -------------------------------------------------------------------------------- /test/command/9616.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9616.md -------------------------------------------------------------------------------- /test/command/9630.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9630.md -------------------------------------------------------------------------------- /test/command/9632.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9632.md -------------------------------------------------------------------------------- /test/command/9635.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9635.md -------------------------------------------------------------------------------- /test/command/9639.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9639.md -------------------------------------------------------------------------------- /test/command/9644.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9644.md -------------------------------------------------------------------------------- /test/command/9652.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9652.md -------------------------------------------------------------------------------- /test/command/9652.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9652.svg -------------------------------------------------------------------------------- /test/command/9657.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9657.md -------------------------------------------------------------------------------- /test/command/9676.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9676.md -------------------------------------------------------------------------------- /test/command/9700.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9700.md -------------------------------------------------------------------------------- /test/command/9777.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9777.md -------------------------------------------------------------------------------- /test/command/9792.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9792.md -------------------------------------------------------------------------------- /test/command/9797.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9797.md -------------------------------------------------------------------------------- /test/command/9805.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9805.md -------------------------------------------------------------------------------- /test/command/9807.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9807.md -------------------------------------------------------------------------------- /test/command/9809.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9809.md -------------------------------------------------------------------------------- /test/command/982.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/982.md -------------------------------------------------------------------------------- /test/command/9865.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9865.md -------------------------------------------------------------------------------- /test/command/987.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/987.md -------------------------------------------------------------------------------- /test/command/9878.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9878.md -------------------------------------------------------------------------------- /test/command/9902.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9902.md -------------------------------------------------------------------------------- /test/command/9904.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9904.md -------------------------------------------------------------------------------- /test/command/9905.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9905.md -------------------------------------------------------------------------------- /test/command/9908.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9908.md -------------------------------------------------------------------------------- /test/command/9943.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9943.md -------------------------------------------------------------------------------- /test/command/9945.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9945.md -------------------------------------------------------------------------------- /test/command/9953.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9953.md -------------------------------------------------------------------------------- /test/command/9987.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/9987.md -------------------------------------------------------------------------------- /test/command/A.txt: -------------------------------------------------------------------------------- 1 | this is a 2 | -------------------------------------------------------------------------------- /test/command/B.txt: -------------------------------------------------------------------------------- 1 | here is b 2 | -------------------------------------------------------------------------------- /test/command/C.txt: -------------------------------------------------------------------------------- 1 | and this is c 2 | -------------------------------------------------------------------------------- /test/command/D.txt: -------------------------------------------------------------------------------- 1 | here's d 2 | -------------------------------------------------------------------------------- /test/command/abbrevs: -------------------------------------------------------------------------------- 1 | Foo. 2 | h.k. 3 | -------------------------------------------------------------------------------- /test/command/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/apa.csl -------------------------------------------------------------------------------- /test/command/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/ascii.md -------------------------------------------------------------------------------- /test/command/bar.tex: -------------------------------------------------------------------------------- 1 | \emph{hi there} 2 | -------------------------------------------------------------------------------- /test/command/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/csv.md -------------------------------------------------------------------------------- /test/command/defaults1.yaml: -------------------------------------------------------------------------------- 1 | include-in-header: command/A.txt 2 | -------------------------------------------------------------------------------- /test/command/defaults5.yaml: -------------------------------------------------------------------------------- 1 | from: markdown 2 | to: html 3 | -------------------------------------------------------------------------------- /test/command/defaults9.yaml: -------------------------------------------------------------------------------- 1 | to: markdown 2 | -------------------------------------------------------------------------------- /test/command/dots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/dots.md -------------------------------------------------------------------------------- /test/command/emoji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/emoji.md -------------------------------------------------------------------------------- /test/command/gfm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/gfm.md -------------------------------------------------------------------------------- /test/command/ieee.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/ieee.csl -------------------------------------------------------------------------------- /test/command/newif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/newif.md -------------------------------------------------------------------------------- /test/command/refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/refs.md -------------------------------------------------------------------------------- /test/command/smart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/smart.md -------------------------------------------------------------------------------- /test/command/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/svg.md -------------------------------------------------------------------------------- /test/command/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/command/toc.md -------------------------------------------------------------------------------- /test/djot-reader.djot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/djot-reader.djot -------------------------------------------------------------------------------- /test/docx/image.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/image.docx -------------------------------------------------------------------------------- /test/docx/links.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/links.docx -------------------------------------------------------------------------------- /test/docx/lists.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/lists.docx -------------------------------------------------------------------------------- /test/docx/notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/notes.docx -------------------------------------------------------------------------------- /test/docx/tables.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/tables.docx -------------------------------------------------------------------------------- /test/docx/tabs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/tabs.docx -------------------------------------------------------------------------------- /test/docx/tabs.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/docx/tabs.native -------------------------------------------------------------------------------- /test/epub/img.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/epub/img.epub -------------------------------------------------------------------------------- /test/fb2/basic.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/fb2/basic.fb2 -------------------------------------------------------------------------------- /test/fb2/images.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/fb2/images.fb2 -------------------------------------------------------------------------------- /test/fb2/math.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/fb2/math.fb2 -------------------------------------------------------------------------------- /test/fb2/meta.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/fb2/meta.fb2 -------------------------------------------------------------------------------- /test/fb2/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/fb2/test.jpg -------------------------------------------------------------------------------- /test/fb2/titles.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/fb2/titles.fb2 -------------------------------------------------------------------------------- /test/html-reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/html-reader.html -------------------------------------------------------------------------------- /test/insert: -------------------------------------------------------------------------------- 1 | STUFF INSERTED 2 | -------------------------------------------------------------------------------- /test/ipynb/mime.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/ipynb/mime.ipynb -------------------------------------------------------------------------------- /test/ipynb/rank.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/ipynb/rank.ipynb -------------------------------------------------------------------------------- /test/jats-reader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/jats-reader.xml -------------------------------------------------------------------------------- /test/jira-reader.jira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/jira-reader.jira -------------------------------------------------------------------------------- /test/lalune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/lalune.jpg -------------------------------------------------------------------------------- /test/lhs-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/lhs-test.html -------------------------------------------------------------------------------- /test/lhs-test.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/lhs-test.latex -------------------------------------------------------------------------------- /test/lhs-test.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/lhs-test.native -------------------------------------------------------------------------------- /test/lhs-test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/lhs-test.rst -------------------------------------------------------------------------------- /test/lhs-test.rst+lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/lhs-test.rst+lhs -------------------------------------------------------------------------------- /test/man-reader.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/man-reader.man -------------------------------------------------------------------------------- /test/media/rId25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/media/rId25.jpg -------------------------------------------------------------------------------- /test/media/rId26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/media/rId26.jpg -------------------------------------------------------------------------------- /test/media/rId27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/media/rId27.jpg -------------------------------------------------------------------------------- /test/movie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/movie.jpg -------------------------------------------------------------------------------- /test/odt/markdown/blockquote2.md: -------------------------------------------------------------------------------- 1 | Paragraph 2 | 3 | > A blockquote. 4 | -------------------------------------------------------------------------------- /test/odt/markdown/bold.md: -------------------------------------------------------------------------------- 1 | Here comes **bold** text -------------------------------------------------------------------------------- /test/odt/markdown/citation.md: -------------------------------------------------------------------------------- 1 | Some text[@Ex] with a citation. -------------------------------------------------------------------------------- /test/odt/markdown/formula.md: -------------------------------------------------------------------------------- 1 | $$E = {m \cdot c^{2}}$$ -------------------------------------------------------------------------------- /test/odt/markdown/horizontalRule.md: -------------------------------------------------------------------------------- 1 | --- -------------------------------------------------------------------------------- /test/odt/markdown/italic.md: -------------------------------------------------------------------------------- 1 | Here comes *italic* text -------------------------------------------------------------------------------- /test/odt/markdown/strikeout.md: -------------------------------------------------------------------------------- 1 | Here comes text that was ~~striken out~~. -------------------------------------------------------------------------------- /test/odt/markdown/underlined.md: -------------------------------------------------------------------------------- 1 | Here comes *underlined* text -------------------------------------------------------------------------------- /test/odt/odt/bold.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/odt/odt/bold.odt -------------------------------------------------------------------------------- /test/odt/odt/tab.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/odt/odt/tab.odt -------------------------------------------------------------------------------- /test/opml-reader.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/opml-reader.opml -------------------------------------------------------------------------------- /test/pipe-tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/pipe-tables.txt -------------------------------------------------------------------------------- /test/pod-reader.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/pod-reader.pod -------------------------------------------------------------------------------- /test/rst-reader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rst-reader.rst -------------------------------------------------------------------------------- /test/rtf/accent.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi 2 | { le caf\'e9 o\'f9 on ne fume pas } 3 | } 4 | -------------------------------------------------------------------------------- /test/rtf/bookmark.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/bookmark.rtf -------------------------------------------------------------------------------- /test/rtf/footnote.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/footnote.rtf -------------------------------------------------------------------------------- /test/rtf/heading.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/heading.rtf -------------------------------------------------------------------------------- /test/rtf/image.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/image.native -------------------------------------------------------------------------------- /test/rtf/image.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/image.rtf -------------------------------------------------------------------------------- /test/rtf/link.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/link.native -------------------------------------------------------------------------------- /test/rtf/link.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/link.rtf -------------------------------------------------------------------------------- /test/rtf/unicode.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/rtf/unicode.rtf -------------------------------------------------------------------------------- /test/s5-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/s5-basic.html -------------------------------------------------------------------------------- /test/s5-fancy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/s5-fancy.html -------------------------------------------------------------------------------- /test/s5-fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/s5-fragment.html -------------------------------------------------------------------------------- /test/s5-inserts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/s5-inserts.html -------------------------------------------------------------------------------- /test/s5.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/s5.native -------------------------------------------------------------------------------- /test/tables.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.asciidoc -------------------------------------------------------------------------------- /test/tables.bbcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.bbcode -------------------------------------------------------------------------------- /test/tables.context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.context -------------------------------------------------------------------------------- /test/tables.djot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.djot -------------------------------------------------------------------------------- /test/tables.docbook4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.docbook4 -------------------------------------------------------------------------------- /test/tables.docbook5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.docbook5 -------------------------------------------------------------------------------- /test/tables.dokuwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.dokuwiki -------------------------------------------------------------------------------- /test/tables.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.fb2 -------------------------------------------------------------------------------- /test/tables.haddock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.haddock -------------------------------------------------------------------------------- /test/tables.html4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.html4 -------------------------------------------------------------------------------- /test/tables.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.html5 -------------------------------------------------------------------------------- /test/tables.icml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.icml -------------------------------------------------------------------------------- /test/tables.jira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.jira -------------------------------------------------------------------------------- /test/tables.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.latex -------------------------------------------------------------------------------- /test/tables.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.man -------------------------------------------------------------------------------- /test/tables.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.markdown -------------------------------------------------------------------------------- /test/tables.markua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.markua -------------------------------------------------------------------------------- /test/tables.mediawiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.mediawiki -------------------------------------------------------------------------------- /test/tables.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.ms -------------------------------------------------------------------------------- /test/tables.muse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.muse -------------------------------------------------------------------------------- /test/tables.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.native -------------------------------------------------------------------------------- /test/tables.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.org -------------------------------------------------------------------------------- /test/tables.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.plain -------------------------------------------------------------------------------- /test/tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.rst -------------------------------------------------------------------------------- /test/tables.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.rtf -------------------------------------------------------------------------------- /test/tables.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.tei -------------------------------------------------------------------------------- /test/tables.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.texinfo -------------------------------------------------------------------------------- /test/tables.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.textile -------------------------------------------------------------------------------- /test/tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.txt -------------------------------------------------------------------------------- /test/tables.typst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.typst -------------------------------------------------------------------------------- /test/tables.vimdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.vimdoc -------------------------------------------------------------------------------- /test/tables.xwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.xwiki -------------------------------------------------------------------------------- /test/tables.zimwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/tables.zimwiki -------------------------------------------------------------------------------- /test/test-pandoc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/test-pandoc.hs -------------------------------------------------------------------------------- /test/testsuite.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/testsuite.native -------------------------------------------------------------------------------- /test/testsuite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/testsuite.txt -------------------------------------------------------------------------------- /test/txt2tags.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/txt2tags.native -------------------------------------------------------------------------------- /test/txt2tags.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/txt2tags.t2t -------------------------------------------------------------------------------- /test/typst-reader.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/typst-reader.typ -------------------------------------------------------------------------------- /test/writer.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.asciidoc -------------------------------------------------------------------------------- /test/writer.bbcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.bbcode -------------------------------------------------------------------------------- /test/writer.context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.context -------------------------------------------------------------------------------- /test/writer.djot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.djot -------------------------------------------------------------------------------- /test/writer.docbook4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.docbook4 -------------------------------------------------------------------------------- /test/writer.docbook5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.docbook5 -------------------------------------------------------------------------------- /test/writer.dokuwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.dokuwiki -------------------------------------------------------------------------------- /test/writer.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.fb2 -------------------------------------------------------------------------------- /test/writer.haddock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.haddock -------------------------------------------------------------------------------- /test/writer.html4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.html4 -------------------------------------------------------------------------------- /test/writer.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.html5 -------------------------------------------------------------------------------- /test/writer.icml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.icml -------------------------------------------------------------------------------- /test/writer.jira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.jira -------------------------------------------------------------------------------- /test/writer.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.latex -------------------------------------------------------------------------------- /test/writer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.man -------------------------------------------------------------------------------- /test/writer.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.markdown -------------------------------------------------------------------------------- /test/writer.markua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.markua -------------------------------------------------------------------------------- /test/writer.mediawiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.mediawiki -------------------------------------------------------------------------------- /test/writer.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.ms -------------------------------------------------------------------------------- /test/writer.muse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.muse -------------------------------------------------------------------------------- /test/writer.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.native -------------------------------------------------------------------------------- /test/writer.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.opml -------------------------------------------------------------------------------- /test/writer.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.org -------------------------------------------------------------------------------- /test/writer.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.plain -------------------------------------------------------------------------------- /test/writer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.rst -------------------------------------------------------------------------------- /test/writer.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.rtf -------------------------------------------------------------------------------- /test/writer.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.tei -------------------------------------------------------------------------------- /test/writer.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.texinfo -------------------------------------------------------------------------------- /test/writer.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.textile -------------------------------------------------------------------------------- /test/writer.typst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.typst -------------------------------------------------------------------------------- /test/writer.vimdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.vimdoc -------------------------------------------------------------------------------- /test/writer.xwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/test/writer.xwiki -------------------------------------------------------------------------------- /tools/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.py] 2 | indent_size = 4 3 | -------------------------------------------------------------------------------- /tools/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/tools/build-arm.sh -------------------------------------------------------------------------------- /tools/diff-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/tools/diff-zip.sh -------------------------------------------------------------------------------- /weeder.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/weeder.toml -------------------------------------------------------------------------------- /windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/windows/Makefile -------------------------------------------------------------------------------- /windows/pandoc.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/windows/pandoc.wxs -------------------------------------------------------------------------------- /wml.xsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgm/pandoc/HEAD/wml.xsd.patch --------------------------------------------------------------------------------