├── .github └── workflows │ └── haskell.yml ├── .gitignore ├── .stylish-haskell.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── Setup.hs ├── cabal.project ├── cabal.project.freeze ├── docs ├── demo │ ├── Makefile │ ├── demo.html │ ├── demo.md │ ├── img1.jpg │ ├── img2.jpg │ ├── img3.jpg │ ├── output-chapters.html │ ├── output-chapters.latex │ ├── output-chapters.md │ ├── output-chapters.pdf │ ├── output-cref.latex │ ├── output-cref.pdf │ ├── output-listings.latex │ ├── output-listings.pdf │ ├── output.html │ ├── output.latex │ ├── output.md │ └── output.pdf └── index.md ├── flake.lock ├── flake.nix ├── hie.yaml ├── inttest.sh ├── lib-internal └── Text │ ├── Numeral │ └── Roman.hs │ └── Pandoc │ └── CrossRef │ ├── References.hs │ ├── References │ ├── Blocks.hs │ ├── Blocks │ │ ├── CodeBlock.hs │ │ ├── Header.hs │ │ ├── Math.hs │ │ ├── Subfigures.hs │ │ ├── Table.hs │ │ └── Util.hs │ ├── List.hs │ ├── Monad.hs │ ├── Refs.hs │ └── Types.hs │ └── Util │ ├── CodeBlockCaptions.hs │ ├── CustomLabels.hs │ ├── Generic.hs │ ├── Meta.hs │ ├── ModifyMeta.hs │ ├── Options.hs │ ├── Settings.hs │ ├── Settings │ ├── Gen.hs │ └── Template.hs │ ├── Template.hs │ └── Util.hs ├── lib └── Text │ └── Pandoc │ ├── CrossRef.hs │ └── CrossRef │ └── Internal.hs ├── licenses └── LICENSE.roman-numerals ├── misc ├── Linux-build-cabal-config ├── Windows-build-cabal-config ├── cabal.project └── macOS-build-cabal-config ├── mkcheck.sh ├── mkinttest.sh ├── package.yaml ├── pandoc-crossref.cabal ├── src ├── ManData.hs └── pandoc-crossref.hs ├── stack.template.yaml ├── stack.yaml ├── stack.yaml.lock └── test ├── Native.hs ├── bench-simple.hs ├── demo-chapters.inc ├── demo.inc ├── m2m ├── chapDelim │ ├── expect.md │ ├── expect.tex │ └── input.md ├── delim │ ├── expect.md │ ├── expect.tex │ └── input.md ├── divTable │ ├── expect.md │ ├── expect.tex │ └── input.md ├── emptyChapterLabels │ ├── expect.md │ ├── expect.tex │ └── input.md ├── eqnBlockTemplate │ ├── expect.md │ ├── expect.tex │ └── input.md ├── eqnDisplayTemplate │ ├── expect.md │ ├── expect.tex │ └── input.md ├── eqnInlineTableTemplate │ ├── expect.md │ ├── expect.tex │ └── input.md ├── eqnInlineTemplate │ ├── expect.md │ ├── expect.tex │ └── input.md ├── equationNumberLaTeX │ ├── expect.md │ ├── expect.tex │ └── input.md ├── equations-auto │ ├── expect.md │ ├── expect.tex │ └── input.md ├── equations-tables-auto │ ├── expect.md │ ├── expect.tex │ └── input.md ├── equations-tables │ ├── expect.md │ ├── expect.tex │ └── input.md ├── equations │ ├── expect.md │ ├── expect.tex │ └── input.md ├── label-precedence │ ├── expect.md │ ├── expect.tex │ └── input.md ├── links-names │ ├── expect.md │ ├── expect.tex │ └── input.md ├── links │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listOfHidden │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listOfLinked │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listOfOrdering │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listOfTemplates-buillet-list │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listOfTemplates-ord-list │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listOfTemplates │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listing-captions-ids │ ├── expect.md │ ├── expect.tex │ └── input.md ├── listings-code-block-caption-278 │ ├── expect.md │ ├── expect.tex │ └── input.md ├── loxItemTitle │ ├── expect.md │ ├── expect.tex │ └── input.md ├── multiple-eqn-same-para │ ├── expect.md │ ├── expect.tex │ └── input.md ├── numberOverride │ ├── expect.md │ ├── expect.tex │ └── input.md ├── refsInListOf │ ├── expect.md │ ├── expect.tex │ └── input.md ├── refsInObjects │ ├── expect.md │ ├── expect.tex │ └── input.md ├── secLabels │ ├── expect.md │ ├── expect.tex │ └── input.md ├── secLevelLabels │ ├── expect.md │ ├── expect.tex │ └── input.md ├── section-template │ ├── expect.md │ ├── expect.tex │ └── input.md ├── setLabelAttribute │ ├── expect.md │ ├── expect.tex │ └── input.md ├── standalone-listOfMetadata │ ├── expect.md │ ├── expect.tex │ └── input.md ├── subfigures-ccsDelim │ ├── expect.md │ ├── expect.tex │ └── input.md ├── subfigures-columns │ ├── expect.md │ ├── expect.tex │ └── input.md ├── subfigures-grid │ ├── expect.md │ ├── expect.tex │ └── input.md ├── subfigures-one-row │ ├── expect.md │ ├── expect.tex │ └── input.md ├── subfigures │ ├── expect.md │ ├── expect.tex │ └── input.md └── titlesInRefs │ ├── expect.md │ ├── expect.tex │ └── input.md ├── test-integrative.hs └── test-pandoc-crossref.hs /.github/workflows/haskell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/.github/workflows/haskell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/cabal.project -------------------------------------------------------------------------------- /cabal.project.freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/cabal.project.freeze -------------------------------------------------------------------------------- /docs/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/Makefile -------------------------------------------------------------------------------- /docs/demo/demo.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/demo/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/demo.md -------------------------------------------------------------------------------- /docs/demo/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/img1.jpg -------------------------------------------------------------------------------- /docs/demo/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/img2.jpg -------------------------------------------------------------------------------- /docs/demo/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/img3.jpg -------------------------------------------------------------------------------- /docs/demo/output-chapters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-chapters.html -------------------------------------------------------------------------------- /docs/demo/output-chapters.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-chapters.latex -------------------------------------------------------------------------------- /docs/demo/output-chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-chapters.md -------------------------------------------------------------------------------- /docs/demo/output-chapters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-chapters.pdf -------------------------------------------------------------------------------- /docs/demo/output-cref.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-cref.latex -------------------------------------------------------------------------------- /docs/demo/output-cref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-cref.pdf -------------------------------------------------------------------------------- /docs/demo/output-listings.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-listings.latex -------------------------------------------------------------------------------- /docs/demo/output-listings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output-listings.pdf -------------------------------------------------------------------------------- /docs/demo/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output.html -------------------------------------------------------------------------------- /docs/demo/output.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output.latex -------------------------------------------------------------------------------- /docs/demo/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output.md -------------------------------------------------------------------------------- /docs/demo/output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/demo/output.pdf -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/docs/index.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/flake.nix -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/hie.yaml -------------------------------------------------------------------------------- /inttest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/inttest.sh -------------------------------------------------------------------------------- /lib-internal/Text/Numeral/Roman.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Numeral/Roman.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks/CodeBlock.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks/CodeBlock.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks/Header.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks/Header.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks/Math.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks/Math.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks/Subfigures.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks/Subfigures.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks/Table.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks/Table.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Blocks/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Blocks/Util.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/List.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Monad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Monad.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Refs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Refs.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/References/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/References/Types.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/CodeBlockCaptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/CodeBlockCaptions.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/CustomLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/CustomLabels.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Generic.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Meta.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/ModifyMeta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/ModifyMeta.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Options.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Settings.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Settings.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Settings/Gen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Settings/Gen.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Settings/Template.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Settings/Template.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Template.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Template.hs -------------------------------------------------------------------------------- /lib-internal/Text/Pandoc/CrossRef/Util/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib-internal/Text/Pandoc/CrossRef/Util/Util.hs -------------------------------------------------------------------------------- /lib/Text/Pandoc/CrossRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib/Text/Pandoc/CrossRef.hs -------------------------------------------------------------------------------- /lib/Text/Pandoc/CrossRef/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/lib/Text/Pandoc/CrossRef/Internal.hs -------------------------------------------------------------------------------- /licenses/LICENSE.roman-numerals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/licenses/LICENSE.roman-numerals -------------------------------------------------------------------------------- /misc/Linux-build-cabal-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/misc/Linux-build-cabal-config -------------------------------------------------------------------------------- /misc/Windows-build-cabal-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/misc/Windows-build-cabal-config -------------------------------------------------------------------------------- /misc/cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/misc/cabal.project -------------------------------------------------------------------------------- /misc/macOS-build-cabal-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/misc/macOS-build-cabal-config -------------------------------------------------------------------------------- /mkcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/mkcheck.sh -------------------------------------------------------------------------------- /mkinttest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/mkinttest.sh -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/package.yaml -------------------------------------------------------------------------------- /pandoc-crossref.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/pandoc-crossref.cabal -------------------------------------------------------------------------------- /src/ManData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/src/ManData.hs -------------------------------------------------------------------------------- /src/pandoc-crossref.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/src/pandoc-crossref.hs -------------------------------------------------------------------------------- /stack.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/stack.template.yaml -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/Native.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/Native.hs -------------------------------------------------------------------------------- /test/bench-simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/bench-simple.hs -------------------------------------------------------------------------------- /test/demo-chapters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/demo-chapters.inc -------------------------------------------------------------------------------- /test/demo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/demo.inc -------------------------------------------------------------------------------- /test/m2m/chapDelim/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/chapDelim/expect.md -------------------------------------------------------------------------------- /test/m2m/chapDelim/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/chapDelim/expect.tex -------------------------------------------------------------------------------- /test/m2m/chapDelim/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/chapDelim/input.md -------------------------------------------------------------------------------- /test/m2m/delim/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/delim/expect.md -------------------------------------------------------------------------------- /test/m2m/delim/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/delim/expect.tex -------------------------------------------------------------------------------- /test/m2m/delim/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/delim/input.md -------------------------------------------------------------------------------- /test/m2m/divTable/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/divTable/expect.md -------------------------------------------------------------------------------- /test/m2m/divTable/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/divTable/expect.tex -------------------------------------------------------------------------------- /test/m2m/divTable/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/divTable/input.md -------------------------------------------------------------------------------- /test/m2m/emptyChapterLabels/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/emptyChapterLabels/expect.md -------------------------------------------------------------------------------- /test/m2m/emptyChapterLabels/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/emptyChapterLabels/expect.tex -------------------------------------------------------------------------------- /test/m2m/emptyChapterLabels/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/emptyChapterLabels/input.md -------------------------------------------------------------------------------- /test/m2m/eqnBlockTemplate/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnBlockTemplate/expect.md -------------------------------------------------------------------------------- /test/m2m/eqnBlockTemplate/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnBlockTemplate/expect.tex -------------------------------------------------------------------------------- /test/m2m/eqnBlockTemplate/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnBlockTemplate/input.md -------------------------------------------------------------------------------- /test/m2m/eqnDisplayTemplate/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnDisplayTemplate/expect.md -------------------------------------------------------------------------------- /test/m2m/eqnDisplayTemplate/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnDisplayTemplate/expect.tex -------------------------------------------------------------------------------- /test/m2m/eqnDisplayTemplate/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnDisplayTemplate/input.md -------------------------------------------------------------------------------- /test/m2m/eqnInlineTableTemplate/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnInlineTableTemplate/expect.md -------------------------------------------------------------------------------- /test/m2m/eqnInlineTableTemplate/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnInlineTableTemplate/expect.tex -------------------------------------------------------------------------------- /test/m2m/eqnInlineTableTemplate/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnInlineTableTemplate/input.md -------------------------------------------------------------------------------- /test/m2m/eqnInlineTemplate/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnInlineTemplate/expect.md -------------------------------------------------------------------------------- /test/m2m/eqnInlineTemplate/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnInlineTemplate/expect.tex -------------------------------------------------------------------------------- /test/m2m/eqnInlineTemplate/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/eqnInlineTemplate/input.md -------------------------------------------------------------------------------- /test/m2m/equationNumberLaTeX/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equationNumberLaTeX/expect.md -------------------------------------------------------------------------------- /test/m2m/equationNumberLaTeX/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equationNumberLaTeX/expect.tex -------------------------------------------------------------------------------- /test/m2m/equationNumberLaTeX/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equationNumberLaTeX/input.md -------------------------------------------------------------------------------- /test/m2m/equations-auto/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-auto/expect.md -------------------------------------------------------------------------------- /test/m2m/equations-auto/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-auto/expect.tex -------------------------------------------------------------------------------- /test/m2m/equations-auto/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-auto/input.md -------------------------------------------------------------------------------- /test/m2m/equations-tables-auto/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-tables-auto/expect.md -------------------------------------------------------------------------------- /test/m2m/equations-tables-auto/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-tables-auto/expect.tex -------------------------------------------------------------------------------- /test/m2m/equations-tables-auto/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-tables-auto/input.md -------------------------------------------------------------------------------- /test/m2m/equations-tables/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-tables/expect.md -------------------------------------------------------------------------------- /test/m2m/equations-tables/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-tables/expect.tex -------------------------------------------------------------------------------- /test/m2m/equations-tables/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations-tables/input.md -------------------------------------------------------------------------------- /test/m2m/equations/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations/expect.md -------------------------------------------------------------------------------- /test/m2m/equations/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations/expect.tex -------------------------------------------------------------------------------- /test/m2m/equations/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/equations/input.md -------------------------------------------------------------------------------- /test/m2m/label-precedence/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/label-precedence/expect.md -------------------------------------------------------------------------------- /test/m2m/label-precedence/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/label-precedence/expect.tex -------------------------------------------------------------------------------- /test/m2m/label-precedence/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/label-precedence/input.md -------------------------------------------------------------------------------- /test/m2m/links-names/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/links-names/expect.md -------------------------------------------------------------------------------- /test/m2m/links-names/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/links-names/expect.tex -------------------------------------------------------------------------------- /test/m2m/links-names/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/links-names/input.md -------------------------------------------------------------------------------- /test/m2m/links/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/links/expect.md -------------------------------------------------------------------------------- /test/m2m/links/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/links/expect.tex -------------------------------------------------------------------------------- /test/m2m/links/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/links/input.md -------------------------------------------------------------------------------- /test/m2m/listOfHidden/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfHidden/expect.md -------------------------------------------------------------------------------- /test/m2m/listOfHidden/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfHidden/expect.tex -------------------------------------------------------------------------------- /test/m2m/listOfHidden/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfHidden/input.md -------------------------------------------------------------------------------- /test/m2m/listOfLinked/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfLinked/expect.md -------------------------------------------------------------------------------- /test/m2m/listOfLinked/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfLinked/expect.tex -------------------------------------------------------------------------------- /test/m2m/listOfLinked/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfLinked/input.md -------------------------------------------------------------------------------- /test/m2m/listOfOrdering/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfOrdering/expect.md -------------------------------------------------------------------------------- /test/m2m/listOfOrdering/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfOrdering/expect.tex -------------------------------------------------------------------------------- /test/m2m/listOfOrdering/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfOrdering/input.md -------------------------------------------------------------------------------- /test/m2m/listOfTemplates-buillet-list/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates-buillet-list/expect.md -------------------------------------------------------------------------------- /test/m2m/listOfTemplates-buillet-list/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates-buillet-list/expect.tex -------------------------------------------------------------------------------- /test/m2m/listOfTemplates-buillet-list/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates-buillet-list/input.md -------------------------------------------------------------------------------- /test/m2m/listOfTemplates-ord-list/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates-ord-list/expect.md -------------------------------------------------------------------------------- /test/m2m/listOfTemplates-ord-list/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates-ord-list/expect.tex -------------------------------------------------------------------------------- /test/m2m/listOfTemplates-ord-list/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates-ord-list/input.md -------------------------------------------------------------------------------- /test/m2m/listOfTemplates/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates/expect.md -------------------------------------------------------------------------------- /test/m2m/listOfTemplates/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates/expect.tex -------------------------------------------------------------------------------- /test/m2m/listOfTemplates/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listOfTemplates/input.md -------------------------------------------------------------------------------- /test/m2m/listing-captions-ids/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listing-captions-ids/expect.md -------------------------------------------------------------------------------- /test/m2m/listing-captions-ids/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listing-captions-ids/expect.tex -------------------------------------------------------------------------------- /test/m2m/listing-captions-ids/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listing-captions-ids/input.md -------------------------------------------------------------------------------- /test/m2m/listings-code-block-caption-278/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listings-code-block-caption-278/expect.md -------------------------------------------------------------------------------- /test/m2m/listings-code-block-caption-278/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listings-code-block-caption-278/expect.tex -------------------------------------------------------------------------------- /test/m2m/listings-code-block-caption-278/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/listings-code-block-caption-278/input.md -------------------------------------------------------------------------------- /test/m2m/loxItemTitle/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/loxItemTitle/expect.md -------------------------------------------------------------------------------- /test/m2m/loxItemTitle/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/loxItemTitle/expect.tex -------------------------------------------------------------------------------- /test/m2m/loxItemTitle/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/loxItemTitle/input.md -------------------------------------------------------------------------------- /test/m2m/multiple-eqn-same-para/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/multiple-eqn-same-para/expect.md -------------------------------------------------------------------------------- /test/m2m/multiple-eqn-same-para/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/multiple-eqn-same-para/expect.tex -------------------------------------------------------------------------------- /test/m2m/multiple-eqn-same-para/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/multiple-eqn-same-para/input.md -------------------------------------------------------------------------------- /test/m2m/numberOverride/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/numberOverride/expect.md -------------------------------------------------------------------------------- /test/m2m/numberOverride/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/numberOverride/expect.tex -------------------------------------------------------------------------------- /test/m2m/numberOverride/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/numberOverride/input.md -------------------------------------------------------------------------------- /test/m2m/refsInListOf/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/refsInListOf/expect.md -------------------------------------------------------------------------------- /test/m2m/refsInListOf/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/refsInListOf/expect.tex -------------------------------------------------------------------------------- /test/m2m/refsInListOf/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/refsInListOf/input.md -------------------------------------------------------------------------------- /test/m2m/refsInObjects/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/refsInObjects/expect.md -------------------------------------------------------------------------------- /test/m2m/refsInObjects/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/refsInObjects/expect.tex -------------------------------------------------------------------------------- /test/m2m/refsInObjects/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/refsInObjects/input.md -------------------------------------------------------------------------------- /test/m2m/secLabels/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/secLabels/expect.md -------------------------------------------------------------------------------- /test/m2m/secLabels/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/secLabels/expect.tex -------------------------------------------------------------------------------- /test/m2m/secLabels/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/secLabels/input.md -------------------------------------------------------------------------------- /test/m2m/secLevelLabels/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/secLevelLabels/expect.md -------------------------------------------------------------------------------- /test/m2m/secLevelLabels/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/secLevelLabels/expect.tex -------------------------------------------------------------------------------- /test/m2m/secLevelLabels/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/secLevelLabels/input.md -------------------------------------------------------------------------------- /test/m2m/section-template/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/section-template/expect.md -------------------------------------------------------------------------------- /test/m2m/section-template/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/section-template/expect.tex -------------------------------------------------------------------------------- /test/m2m/section-template/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/section-template/input.md -------------------------------------------------------------------------------- /test/m2m/setLabelAttribute/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/setLabelAttribute/expect.md -------------------------------------------------------------------------------- /test/m2m/setLabelAttribute/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/setLabelAttribute/expect.tex -------------------------------------------------------------------------------- /test/m2m/setLabelAttribute/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/setLabelAttribute/input.md -------------------------------------------------------------------------------- /test/m2m/standalone-listOfMetadata/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/standalone-listOfMetadata/expect.md -------------------------------------------------------------------------------- /test/m2m/standalone-listOfMetadata/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/standalone-listOfMetadata/expect.tex -------------------------------------------------------------------------------- /test/m2m/standalone-listOfMetadata/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/standalone-listOfMetadata/input.md -------------------------------------------------------------------------------- /test/m2m/subfigures-ccsDelim/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-ccsDelim/expect.md -------------------------------------------------------------------------------- /test/m2m/subfigures-ccsDelim/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-ccsDelim/expect.tex -------------------------------------------------------------------------------- /test/m2m/subfigures-ccsDelim/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-ccsDelim/input.md -------------------------------------------------------------------------------- /test/m2m/subfigures-columns/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-columns/expect.md -------------------------------------------------------------------------------- /test/m2m/subfigures-columns/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-columns/expect.tex -------------------------------------------------------------------------------- /test/m2m/subfigures-columns/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-columns/input.md -------------------------------------------------------------------------------- /test/m2m/subfigures-grid/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-grid/expect.md -------------------------------------------------------------------------------- /test/m2m/subfigures-grid/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-grid/expect.tex -------------------------------------------------------------------------------- /test/m2m/subfigures-grid/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-grid/input.md -------------------------------------------------------------------------------- /test/m2m/subfigures-one-row/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-one-row/expect.md -------------------------------------------------------------------------------- /test/m2m/subfigures-one-row/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-one-row/expect.tex -------------------------------------------------------------------------------- /test/m2m/subfigures-one-row/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures-one-row/input.md -------------------------------------------------------------------------------- /test/m2m/subfigures/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures/expect.md -------------------------------------------------------------------------------- /test/m2m/subfigures/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures/expect.tex -------------------------------------------------------------------------------- /test/m2m/subfigures/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/subfigures/input.md -------------------------------------------------------------------------------- /test/m2m/titlesInRefs/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/titlesInRefs/expect.md -------------------------------------------------------------------------------- /test/m2m/titlesInRefs/expect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/titlesInRefs/expect.tex -------------------------------------------------------------------------------- /test/m2m/titlesInRefs/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/m2m/titlesInRefs/input.md -------------------------------------------------------------------------------- /test/test-integrative.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/test-integrative.hs -------------------------------------------------------------------------------- /test/test-pandoc-crossref.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lierdakil/pandoc-crossref/HEAD/test/test-pandoc-crossref.hs --------------------------------------------------------------------------------