├── .gitignore ├── .typstignore ├── Justfile ├── LICENSE ├── README.md ├── docs ├── _assets.typ ├── assets │ ├── examples │ │ ├── headline.png │ │ ├── headline.typ │ │ ├── queen-elizabeth-ll-clipart.jpg │ │ ├── theme-cnltx-pages.typ │ │ ├── theme-cnltx-pages │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── theme-cnltx.png │ │ ├── theme-cnltx.typ │ │ ├── theme-modern-pages.typ │ │ ├── theme-modern-pages │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ ├── theme-modern.png │ │ ├── theme-modern.typ │ │ ├── theme-orly-pages.typ │ │ ├── theme-orly-pages │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ └── 6.png │ │ ├── theme-orly.png │ │ ├── theme-orly.typ │ │ ├── theme-typst-pages.typ │ │ ├── theme-typst-pages │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── theme-typst.png │ │ └── theme-typst.typ │ ├── thumbnail.png │ └── thumbnail.typ ├── manual.pdf ├── manual.typ └── test.typ ├── scripts ├── assets ├── link ├── package ├── setup └── uninstall ├── src ├── _api.typ ├── _deps.typ ├── api │ ├── collections.typ │ ├── commands.typ │ ├── elements.typ │ ├── examples.typ │ ├── icons.typ │ ├── links.typ │ ├── tidy.typ │ ├── types.typ │ └── values.typ ├── core │ ├── document.typ │ ├── index.typ │ ├── layout.typ │ ├── schema.typ │ ├── styles.typ │ ├── themes.typ │ └── tidy.typ ├── mantys.typ ├── themes │ ├── cnltx.typ │ ├── default.typ │ ├── modern.typ │ └── orly.typ └── util │ ├── is.typ │ ├── typing.typ │ ├── utils.typ │ └── valkyrie.typ ├── tbump.toml ├── template └── manual.typ ├── tests ├── alerts │ ├── .gitignore │ ├── out │ │ └── 1.png │ ├── ref │ │ └── 1.png │ └── test.typ ├── args │ ├── .gitignore │ ├── out │ │ └── 1.png │ ├── ref │ │ └── 1.png │ └── test.typ ├── cmds │ ├── .gitignore │ ├── out │ │ └── 1.png │ ├── ref │ │ └── 1.png │ └── test.typ ├── curried │ ├── .gitignore │ ├── curried.typ │ ├── out │ │ └── 1.png │ └── test.typ ├── icons │ ├── .gitignore │ ├── out │ │ ├── 1.png │ │ └── 2.png │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ └── test.typ ├── links │ ├── .gitignore │ ├── out │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ └── test.typ ├── properties │ ├── .gitignore │ ├── out │ │ └── 1.png │ ├── ref │ │ └── 1.png │ └── test.typ ├── template.typ ├── test-theme.typ ├── test.toml ├── types │ ├── .gitignore │ ├── out │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ └── test.typ └── values │ ├── .gitignore │ ├── out │ ├── 1.png │ └── 2.png │ ├── ref │ ├── 1.png │ └── 2.png │ └── test.typ └── typst.toml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | -------------------------------------------------------------------------------- /.typstignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/.typstignore -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/README.md -------------------------------------------------------------------------------- /docs/_assets.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/_assets.typ -------------------------------------------------------------------------------- /docs/assets/examples/headline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/headline.png -------------------------------------------------------------------------------- /docs/assets/examples/headline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/headline.typ -------------------------------------------------------------------------------- /docs/assets/examples/queen-elizabeth-ll-clipart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/queen-elizabeth-ll-clipart.jpg -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx-pages.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx-pages.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx-pages/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx-pages/1.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx-pages/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx-pages/2.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx-pages/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx-pages/3.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx-pages/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx-pages/4.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx-pages/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx-pages/5.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-cnltx.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-cnltx.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern-pages.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern-pages.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern-pages/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern-pages/1.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern-pages/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern-pages/2.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern-pages/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern-pages/3.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern-pages/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern-pages/4.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-modern.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-modern.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages/1.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages/2.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages/3.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages/4.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages/5.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly-pages/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly-pages/6.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-orly.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-orly.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst-pages.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst-pages.typ -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst-pages/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst-pages/1.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst-pages/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst-pages/2.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst-pages/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst-pages/3.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst-pages/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst-pages/4.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst-pages/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst-pages/5.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst.png -------------------------------------------------------------------------------- /docs/assets/examples/theme-typst.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/examples/theme-typst.typ -------------------------------------------------------------------------------- /docs/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/thumbnail.png -------------------------------------------------------------------------------- /docs/assets/thumbnail.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/assets/thumbnail.typ -------------------------------------------------------------------------------- /docs/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/manual.pdf -------------------------------------------------------------------------------- /docs/manual.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/manual.typ -------------------------------------------------------------------------------- /docs/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/docs/test.typ -------------------------------------------------------------------------------- /scripts/assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/scripts/assets -------------------------------------------------------------------------------- /scripts/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/scripts/link -------------------------------------------------------------------------------- /scripts/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/scripts/package -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/scripts/uninstall -------------------------------------------------------------------------------- /src/_api.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/_api.typ -------------------------------------------------------------------------------- /src/_deps.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/_deps.typ -------------------------------------------------------------------------------- /src/api/collections.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/collections.typ -------------------------------------------------------------------------------- /src/api/commands.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/commands.typ -------------------------------------------------------------------------------- /src/api/elements.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/elements.typ -------------------------------------------------------------------------------- /src/api/examples.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/examples.typ -------------------------------------------------------------------------------- /src/api/icons.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/icons.typ -------------------------------------------------------------------------------- /src/api/links.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/links.typ -------------------------------------------------------------------------------- /src/api/tidy.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/tidy.typ -------------------------------------------------------------------------------- /src/api/types.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/types.typ -------------------------------------------------------------------------------- /src/api/values.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/api/values.typ -------------------------------------------------------------------------------- /src/core/document.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/document.typ -------------------------------------------------------------------------------- /src/core/index.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/index.typ -------------------------------------------------------------------------------- /src/core/layout.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/layout.typ -------------------------------------------------------------------------------- /src/core/schema.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/schema.typ -------------------------------------------------------------------------------- /src/core/styles.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/styles.typ -------------------------------------------------------------------------------- /src/core/themes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/themes.typ -------------------------------------------------------------------------------- /src/core/tidy.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/core/tidy.typ -------------------------------------------------------------------------------- /src/mantys.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/mantys.typ -------------------------------------------------------------------------------- /src/themes/cnltx.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/themes/cnltx.typ -------------------------------------------------------------------------------- /src/themes/default.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/themes/default.typ -------------------------------------------------------------------------------- /src/themes/modern.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/themes/modern.typ -------------------------------------------------------------------------------- /src/themes/orly.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/themes/orly.typ -------------------------------------------------------------------------------- /src/util/is.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/util/is.typ -------------------------------------------------------------------------------- /src/util/typing.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/util/typing.typ -------------------------------------------------------------------------------- /src/util/utils.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/util/utils.typ -------------------------------------------------------------------------------- /src/util/valkyrie.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/src/util/valkyrie.typ -------------------------------------------------------------------------------- /tbump.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tbump.toml -------------------------------------------------------------------------------- /template/manual.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/template/manual.typ -------------------------------------------------------------------------------- /tests/alerts/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/alerts/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/alerts/out/1.png -------------------------------------------------------------------------------- /tests/alerts/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/alerts/ref/1.png -------------------------------------------------------------------------------- /tests/alerts/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/alerts/test.typ -------------------------------------------------------------------------------- /tests/args/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/args/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/args/out/1.png -------------------------------------------------------------------------------- /tests/args/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/args/ref/1.png -------------------------------------------------------------------------------- /tests/args/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/args/test.typ -------------------------------------------------------------------------------- /tests/cmds/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/cmds/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/cmds/out/1.png -------------------------------------------------------------------------------- /tests/cmds/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/cmds/ref/1.png -------------------------------------------------------------------------------- /tests/cmds/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/cmds/test.typ -------------------------------------------------------------------------------- /tests/curried/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/curried/curried.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/curried/curried.typ -------------------------------------------------------------------------------- /tests/curried/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/curried/out/1.png -------------------------------------------------------------------------------- /tests/curried/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/curried/test.typ -------------------------------------------------------------------------------- /tests/icons/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/icons/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/icons/out/1.png -------------------------------------------------------------------------------- /tests/icons/out/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/icons/out/2.png -------------------------------------------------------------------------------- /tests/icons/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/icons/ref/1.png -------------------------------------------------------------------------------- /tests/icons/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/icons/ref/2.png -------------------------------------------------------------------------------- /tests/icons/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/icons/test.typ -------------------------------------------------------------------------------- /tests/links/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/links/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/out/1.png -------------------------------------------------------------------------------- /tests/links/out/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/out/2.png -------------------------------------------------------------------------------- /tests/links/out/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/out/3.png -------------------------------------------------------------------------------- /tests/links/out/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/out/4.png -------------------------------------------------------------------------------- /tests/links/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/ref/1.png -------------------------------------------------------------------------------- /tests/links/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/ref/2.png -------------------------------------------------------------------------------- /tests/links/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/ref/3.png -------------------------------------------------------------------------------- /tests/links/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/ref/4.png -------------------------------------------------------------------------------- /tests/links/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/links/test.typ -------------------------------------------------------------------------------- /tests/properties/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/properties/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/properties/out/1.png -------------------------------------------------------------------------------- /tests/properties/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/properties/ref/1.png -------------------------------------------------------------------------------- /tests/properties/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/properties/test.typ -------------------------------------------------------------------------------- /tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/template.typ -------------------------------------------------------------------------------- /tests/test-theme.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/test-theme.typ -------------------------------------------------------------------------------- /tests/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/test.toml -------------------------------------------------------------------------------- /tests/types/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/types/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/out/1.png -------------------------------------------------------------------------------- /tests/types/out/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/out/2.png -------------------------------------------------------------------------------- /tests/types/out/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/out/3.png -------------------------------------------------------------------------------- /tests/types/out/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/out/4.png -------------------------------------------------------------------------------- /tests/types/out/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/out/5.png -------------------------------------------------------------------------------- /tests/types/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/ref/1.png -------------------------------------------------------------------------------- /tests/types/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/ref/2.png -------------------------------------------------------------------------------- /tests/types/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/ref/3.png -------------------------------------------------------------------------------- /tests/types/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/ref/4.png -------------------------------------------------------------------------------- /tests/types/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/ref/5.png -------------------------------------------------------------------------------- /tests/types/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/types/test.typ -------------------------------------------------------------------------------- /tests/values/.gitignore: -------------------------------------------------------------------------------- 1 | # added by typst-test 2 | -------------------------------------------------------------------------------- /tests/values/out/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/values/out/1.png -------------------------------------------------------------------------------- /tests/values/out/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/values/out/2.png -------------------------------------------------------------------------------- /tests/values/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/values/ref/1.png -------------------------------------------------------------------------------- /tests/values/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/values/ref/2.png -------------------------------------------------------------------------------- /tests/values/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/tests/values/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/typst-mantys/HEAD/typst.toml --------------------------------------------------------------------------------