├── .editorconfig ├── .gitattributes ├── .github ├── cross-linux-riscv64 │ ├── Dockerfile │ ├── build_openssl.sh │ └── install_docker.sh └── workflows │ ├── ci.yaml │ ├── docker.yaml │ ├── gh_pages.yml │ ├── lint_pr_title.yml │ ├── release.yml │ └── releast-typst.yml ├── .gitignore ├── .gitmodules ├── .prettierrc ├── .typstignore ├── CHANGELOG.md ├── CHANGELOG ├── CHANGELOG-0.1.md ├── CHANGELOG-0.2.md ├── CHANGELOG-0.3.md └── README.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── fonts │ └── .gitignore ├── cli ├── Cargo.toml ├── build.rs └── src │ ├── error.rs │ ├── lib.rs │ ├── main.rs │ ├── meta.rs │ ├── outline.rs │ ├── project.rs │ ├── render │ ├── mod.rs │ ├── search.rs │ └── typst.rs │ ├── serve.rs │ ├── tui.rs │ ├── utils.rs │ └── version.rs ├── contrib └── typst │ ├── gh-ebook.typ │ ├── gh-pages.typ │ ├── theme-style.toml │ ├── tidy-book │ └── lib.typ │ └── tokyo-night.tmTheme ├── dist-workspace.toml ├── frontend ├── .gitignore ├── package.json ├── src │ ├── global.d.ts │ └── main.ts ├── tsconfig.json └── vite.config.mjs ├── github-pages ├── .gitignore └── docs │ ├── book.typ │ ├── cli │ ├── build.typ │ ├── clean.typ │ ├── completions.typ │ ├── init.typ │ ├── main.typ │ └── serve.typ │ ├── format │ ├── book-meta.typ │ ├── book.typ │ ├── build-meta.typ │ ├── main.typ │ └── theme.typ │ ├── guide │ ├── faq.typ │ ├── get-started.typ │ └── installation.typ │ ├── introduction.typ │ ├── pdf.typ │ ├── supports.typ │ └── supports │ ├── cross-ref-sample.typ │ ├── cross-ref.typ │ ├── embed-html.typ │ ├── multimedia.typ │ ├── render-test.typ │ └── sema-desc.typ ├── package.json ├── packages ├── shiroa-tests │ ├── example-shiroa-docs.typ │ ├── fixtures │ │ └── plain-text │ │ │ ├── image.svg │ │ │ └── syntax.typ │ ├── main.typ │ ├── test-no-bad-import.typ │ ├── test-plain-text.typ │ └── test-summary.typ └── shiroa │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── empty.typ │ ├── html-bindings-h.typ │ ├── html-bindings.typ │ ├── lib.typ │ ├── media.typ │ ├── meta-and-state.typ │ ├── summary-internal.typ │ ├── summary.typ │ ├── supports-html-internal.typ │ ├── supports-html.typ │ ├── supports-link.typ │ ├── supports-text-internal.typ │ ├── supports-text.typ │ ├── sys.typ │ ├── template-link.typ │ ├── template-theme.typ │ ├── templates.typ │ ├── typst.toml │ ├── utils.typ │ └── xcommand.typ ├── refs ├── .gitignore └── paged │ └── example-shiroa-docs.hash ├── scripts └── draft-release.mjs ├── tests ├── .gitignore └── minimal │ ├── book.typ │ ├── chapter1.typ │ └── template.typ ├── themes ├── mdbook │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── chrome.css │ │ ├── general.css │ │ ├── print.css │ │ └── variables.css │ ├── head.typ │ ├── html.typ │ ├── icons.typ │ ├── index.js │ ├── index.typ │ ├── lib.typ │ ├── mod.typ │ ├── page-sidebar.typ │ ├── page.typ │ ├── pollyfill.js │ └── typst.toml └── starlight │ ├── LICENSE │ ├── README.md │ ├── content-panel.typ │ ├── head.typ │ ├── html.typ │ ├── icons.typ │ ├── index.typ │ ├── lib.typ │ ├── mod.typ │ ├── page-header.typ │ ├── page-main.typ │ ├── page-right-sidebar.typ │ ├── page-sidebar-mobile.typ │ ├── page-sidebar.typ │ ├── page.typ │ ├── site-search-results.typ │ ├── site-search.typ │ ├── social-icons.typ │ ├── styles │ ├── asides.css │ ├── markdown.css │ ├── props.css │ ├── reset.css │ ├── search.css │ └── utils.css │ ├── table-of-contents-mobile.typ │ ├── table-of-contents.typ │ ├── theme-provider.typ │ ├── theme-select.typ │ └── typst.toml ├── tools └── build-from-source │ ├── Cargo.toml │ ├── dist.toml │ └── src │ └── main.rs ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/cross-linux-riscv64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/cross-linux-riscv64/Dockerfile -------------------------------------------------------------------------------- /.github/cross-linux-riscv64/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/cross-linux-riscv64/build_openssl.sh -------------------------------------------------------------------------------- /.github/cross-linux-riscv64/install_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/cross-linux-riscv64/install_docker.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.github/workflows/gh_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/workflows/gh_pages.yml -------------------------------------------------------------------------------- /.github/workflows/lint_pr_title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/workflows/lint_pr_title.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/releast-typst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.github/workflows/releast-typst.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/.prettierrc -------------------------------------------------------------------------------- /.typstignore: -------------------------------------------------------------------------------- 1 | target 2 | node_modules 3 | dist 4 | refs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/CHANGELOG/CHANGELOG-0.1.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/CHANGELOG/CHANGELOG-0.2.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/CHANGELOG/CHANGELOG-0.3.md -------------------------------------------------------------------------------- /CHANGELOG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/CHANGELOG/README.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/assets/fonts/.gitignore -------------------------------------------------------------------------------- /cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/Cargo.toml -------------------------------------------------------------------------------- /cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/build.rs -------------------------------------------------------------------------------- /cli/src/error.rs: -------------------------------------------------------------------------------- 1 | pub use reflexo_typst::error::*; 2 | -------------------------------------------------------------------------------- /cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/lib.rs -------------------------------------------------------------------------------- /cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/main.rs -------------------------------------------------------------------------------- /cli/src/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/meta.rs -------------------------------------------------------------------------------- /cli/src/outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/outline.rs -------------------------------------------------------------------------------- /cli/src/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/project.rs -------------------------------------------------------------------------------- /cli/src/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/render/mod.rs -------------------------------------------------------------------------------- /cli/src/render/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/render/search.rs -------------------------------------------------------------------------------- /cli/src/render/typst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/render/typst.rs -------------------------------------------------------------------------------- /cli/src/serve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/serve.rs -------------------------------------------------------------------------------- /cli/src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/tui.rs -------------------------------------------------------------------------------- /cli/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/utils.rs -------------------------------------------------------------------------------- /cli/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/cli/src/version.rs -------------------------------------------------------------------------------- /contrib/typst/gh-ebook.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/contrib/typst/gh-ebook.typ -------------------------------------------------------------------------------- /contrib/typst/gh-pages.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/contrib/typst/gh-pages.typ -------------------------------------------------------------------------------- /contrib/typst/theme-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/contrib/typst/theme-style.toml -------------------------------------------------------------------------------- /contrib/typst/tidy-book/lib.typ: -------------------------------------------------------------------------------- 1 | // https://github.com/Jollywatt/arrow-diagrams 2 | -------------------------------------------------------------------------------- /contrib/typst/tokyo-night.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/contrib/typst/tokyo-night.tmTheme -------------------------------------------------------------------------------- /dist-workspace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/dist-workspace.toml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/frontend/src/global.d.ts -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/frontend/vite.config.mjs -------------------------------------------------------------------------------- /github-pages/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /github-pages/docs/book.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/book.typ -------------------------------------------------------------------------------- /github-pages/docs/cli/build.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/cli/build.typ -------------------------------------------------------------------------------- /github-pages/docs/cli/clean.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/cli/clean.typ -------------------------------------------------------------------------------- /github-pages/docs/cli/completions.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/cli/completions.typ -------------------------------------------------------------------------------- /github-pages/docs/cli/init.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/cli/init.typ -------------------------------------------------------------------------------- /github-pages/docs/cli/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/cli/main.typ -------------------------------------------------------------------------------- /github-pages/docs/cli/serve.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/cli/serve.typ -------------------------------------------------------------------------------- /github-pages/docs/format/book-meta.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/format/book-meta.typ -------------------------------------------------------------------------------- /github-pages/docs/format/book.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/format/book.typ -------------------------------------------------------------------------------- /github-pages/docs/format/build-meta.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/format/build-meta.typ -------------------------------------------------------------------------------- /github-pages/docs/format/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/format/main.typ -------------------------------------------------------------------------------- /github-pages/docs/format/theme.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/format/theme.typ -------------------------------------------------------------------------------- /github-pages/docs/guide/faq.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/guide/faq.typ -------------------------------------------------------------------------------- /github-pages/docs/guide/get-started.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/guide/get-started.typ -------------------------------------------------------------------------------- /github-pages/docs/guide/installation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/guide/installation.typ -------------------------------------------------------------------------------- /github-pages/docs/introduction.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/introduction.typ -------------------------------------------------------------------------------- /github-pages/docs/pdf.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/pdf.typ -------------------------------------------------------------------------------- /github-pages/docs/supports.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports.typ -------------------------------------------------------------------------------- /github-pages/docs/supports/cross-ref-sample.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports/cross-ref-sample.typ -------------------------------------------------------------------------------- /github-pages/docs/supports/cross-ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports/cross-ref.typ -------------------------------------------------------------------------------- /github-pages/docs/supports/embed-html.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports/embed-html.typ -------------------------------------------------------------------------------- /github-pages/docs/supports/multimedia.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports/multimedia.typ -------------------------------------------------------------------------------- /github-pages/docs/supports/render-test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports/render-test.typ -------------------------------------------------------------------------------- /github-pages/docs/supports/sema-desc.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/github-pages/docs/supports/sema-desc.typ -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/package.json -------------------------------------------------------------------------------- /packages/shiroa-tests/example-shiroa-docs.typ: -------------------------------------------------------------------------------- 1 | 2 | #include "/github-pages/docs/pdf.typ" 3 | -------------------------------------------------------------------------------- /packages/shiroa-tests/fixtures/plain-text/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa-tests/fixtures/plain-text/image.svg -------------------------------------------------------------------------------- /packages/shiroa-tests/fixtures/plain-text/syntax.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa-tests/fixtures/plain-text/syntax.typ -------------------------------------------------------------------------------- /packages/shiroa-tests/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa-tests/main.typ -------------------------------------------------------------------------------- /packages/shiroa-tests/test-no-bad-import.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa-tests/test-no-bad-import.typ -------------------------------------------------------------------------------- /packages/shiroa-tests/test-plain-text.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa-tests/test-plain-text.typ -------------------------------------------------------------------------------- /packages/shiroa-tests/test-summary.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa-tests/test-summary.typ -------------------------------------------------------------------------------- /packages/shiroa/.gitignore: -------------------------------------------------------------------------------- 1 | assets -------------------------------------------------------------------------------- /packages/shiroa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/LICENSE -------------------------------------------------------------------------------- /packages/shiroa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/README.md -------------------------------------------------------------------------------- /packages/shiroa/empty.typ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/shiroa/html-bindings-h.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/html-bindings-h.typ -------------------------------------------------------------------------------- /packages/shiroa/html-bindings.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/html-bindings.typ -------------------------------------------------------------------------------- /packages/shiroa/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/lib.typ -------------------------------------------------------------------------------- /packages/shiroa/media.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/media.typ -------------------------------------------------------------------------------- /packages/shiroa/meta-and-state.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/meta-and-state.typ -------------------------------------------------------------------------------- /packages/shiroa/summary-internal.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/summary-internal.typ -------------------------------------------------------------------------------- /packages/shiroa/summary.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/summary.typ -------------------------------------------------------------------------------- /packages/shiroa/supports-html-internal.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/supports-html-internal.typ -------------------------------------------------------------------------------- /packages/shiroa/supports-html.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/supports-html.typ -------------------------------------------------------------------------------- /packages/shiroa/supports-link.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/supports-link.typ -------------------------------------------------------------------------------- /packages/shiroa/supports-text-internal.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/supports-text-internal.typ -------------------------------------------------------------------------------- /packages/shiroa/supports-text.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/supports-text.typ -------------------------------------------------------------------------------- /packages/shiroa/sys.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/sys.typ -------------------------------------------------------------------------------- /packages/shiroa/template-link.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/template-link.typ -------------------------------------------------------------------------------- /packages/shiroa/template-theme.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/template-theme.typ -------------------------------------------------------------------------------- /packages/shiroa/templates.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/templates.typ -------------------------------------------------------------------------------- /packages/shiroa/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/typst.toml -------------------------------------------------------------------------------- /packages/shiroa/utils.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/utils.typ -------------------------------------------------------------------------------- /packages/shiroa/xcommand.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/packages/shiroa/xcommand.typ -------------------------------------------------------------------------------- /refs/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.html -------------------------------------------------------------------------------- /refs/paged/example-shiroa-docs.hash: -------------------------------------------------------------------------------- 1 | siphash128_13:97a714c56e43bbb6ab3ac13d8078c9b2 -------------------------------------------------------------------------------- /scripts/draft-release.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/scripts/draft-release.mjs -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | arrow-diagrams -------------------------------------------------------------------------------- /tests/minimal/book.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tests/minimal/book.typ -------------------------------------------------------------------------------- /tests/minimal/chapter1.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tests/minimal/chapter1.typ -------------------------------------------------------------------------------- /tests/minimal/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tests/minimal/template.typ -------------------------------------------------------------------------------- /themes/mdbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/LICENSE -------------------------------------------------------------------------------- /themes/mdbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/README.md -------------------------------------------------------------------------------- /themes/mdbook/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/css/chrome.css -------------------------------------------------------------------------------- /themes/mdbook/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/css/general.css -------------------------------------------------------------------------------- /themes/mdbook/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/css/print.css -------------------------------------------------------------------------------- /themes/mdbook/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/css/variables.css -------------------------------------------------------------------------------- /themes/mdbook/head.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/head.typ -------------------------------------------------------------------------------- /themes/mdbook/html.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/html.typ -------------------------------------------------------------------------------- /themes/mdbook/icons.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/icons.typ -------------------------------------------------------------------------------- /themes/mdbook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/index.js -------------------------------------------------------------------------------- /themes/mdbook/index.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/index.typ -------------------------------------------------------------------------------- /themes/mdbook/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/lib.typ -------------------------------------------------------------------------------- /themes/mdbook/mod.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/mod.typ -------------------------------------------------------------------------------- /themes/mdbook/page-sidebar.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/page-sidebar.typ -------------------------------------------------------------------------------- /themes/mdbook/page.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/page.typ -------------------------------------------------------------------------------- /themes/mdbook/pollyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/pollyfill.js -------------------------------------------------------------------------------- /themes/mdbook/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/mdbook/typst.toml -------------------------------------------------------------------------------- /themes/starlight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/LICENSE -------------------------------------------------------------------------------- /themes/starlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/README.md -------------------------------------------------------------------------------- /themes/starlight/content-panel.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/content-panel.typ -------------------------------------------------------------------------------- /themes/starlight/head.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/head.typ -------------------------------------------------------------------------------- /themes/starlight/html.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/html.typ -------------------------------------------------------------------------------- /themes/starlight/icons.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/icons.typ -------------------------------------------------------------------------------- /themes/starlight/index.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/index.typ -------------------------------------------------------------------------------- /themes/starlight/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/lib.typ -------------------------------------------------------------------------------- /themes/starlight/mod.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/mod.typ -------------------------------------------------------------------------------- /themes/starlight/page-header.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/page-header.typ -------------------------------------------------------------------------------- /themes/starlight/page-main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/page-main.typ -------------------------------------------------------------------------------- /themes/starlight/page-right-sidebar.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/page-right-sidebar.typ -------------------------------------------------------------------------------- /themes/starlight/page-sidebar-mobile.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/page-sidebar-mobile.typ -------------------------------------------------------------------------------- /themes/starlight/page-sidebar.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/page-sidebar.typ -------------------------------------------------------------------------------- /themes/starlight/page.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/page.typ -------------------------------------------------------------------------------- /themes/starlight/site-search-results.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/site-search-results.typ -------------------------------------------------------------------------------- /themes/starlight/site-search.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/site-search.typ -------------------------------------------------------------------------------- /themes/starlight/social-icons.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/social-icons.typ -------------------------------------------------------------------------------- /themes/starlight/styles/asides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/styles/asides.css -------------------------------------------------------------------------------- /themes/starlight/styles/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/styles/markdown.css -------------------------------------------------------------------------------- /themes/starlight/styles/props.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/styles/props.css -------------------------------------------------------------------------------- /themes/starlight/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/styles/reset.css -------------------------------------------------------------------------------- /themes/starlight/styles/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/styles/search.css -------------------------------------------------------------------------------- /themes/starlight/styles/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/styles/utils.css -------------------------------------------------------------------------------- /themes/starlight/table-of-contents-mobile.typ: -------------------------------------------------------------------------------- 1 | 2 | #import "mod.typ": * 3 | 4 | // --- 5 | 6 | -------------------------------------------------------------------------------- /themes/starlight/table-of-contents.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/table-of-contents.typ -------------------------------------------------------------------------------- /themes/starlight/theme-provider.typ: -------------------------------------------------------------------------------- 1 | 2 | #import "mod.typ": * 3 | 4 | // --- 5 | 6 | -------------------------------------------------------------------------------- /themes/starlight/theme-select.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/theme-select.typ -------------------------------------------------------------------------------- /themes/starlight/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/themes/starlight/typst.toml -------------------------------------------------------------------------------- /tools/build-from-source/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tools/build-from-source/Cargo.toml -------------------------------------------------------------------------------- /tools/build-from-source/dist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tools/build-from-source/dist.toml -------------------------------------------------------------------------------- /tools/build-from-source/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tools/build-from-source/src/main.rs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/HEAD/yarn.lock --------------------------------------------------------------------------------