├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── pull_request_template.md ├── scripts │ └── generate-benchmark-report.nu └── workflows │ ├── bench-comment.yml │ ├── bench-job.yml │ ├── bench-pr.yml │ ├── bench.yml │ ├── build-binaries.yml │ ├── build-docs.yml │ ├── build-playground.yml │ ├── ci.yml │ ├── claude.yml │ ├── gh-pages.yml │ ├── publish-crates.yml │ ├── publish-wasm.yml │ └── release.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── contrib └── typstyle-embedded │ ├── README.md │ ├── assets │ └── .gitignore │ ├── src │ └── lib.typ │ └── typst.toml ├── crates ├── typstyle-consistency │ ├── Cargo.toml │ └── src │ │ ├── cmp.rs │ │ ├── err.rs │ │ ├── harness.rs │ │ ├── lib.rs │ │ └── world.rs ├── typstyle-core │ ├── Cargo.toml │ ├── benches │ │ └── pretty_print.rs │ └── src │ │ ├── attr.rs │ │ ├── config.rs │ │ ├── ext.rs │ │ ├── lib.rs │ │ ├── liteval │ │ └── mod.rs │ │ ├── partial.rs │ │ ├── pretty │ │ ├── args.rs │ │ ├── code_chain.rs │ │ ├── code_flow.rs │ │ ├── code_list.rs │ │ ├── code_misc.rs │ │ ├── comment.rs │ │ ├── context.rs │ │ ├── func_call.rs │ │ ├── import.rs │ │ ├── layout │ │ │ ├── chain.rs │ │ │ ├── flow.rs │ │ │ ├── list.rs │ │ │ ├── mod.rs │ │ │ ├── plain.rs │ │ │ └── table.rs │ │ ├── markup.rs │ │ ├── math.rs │ │ ├── math_align.rs │ │ ├── mod.rs │ │ ├── parened_expr.rs │ │ ├── prelude.rs │ │ ├── style.rs │ │ ├── table.rs │ │ ├── text.rs │ │ └── util.rs │ │ └── utils.rs ├── typstyle-typlugin │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs ├── typstyle-wasm │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ │ └── lib.rs └── typstyle │ ├── Cargo.toml │ ├── build.rs │ ├── src │ ├── cli.rs │ ├── diff.rs │ ├── fmt.rs │ ├── fs.rs │ ├── logging.rs │ └── main.rs │ └── tests │ ├── common.rs │ ├── test_format.rs │ ├── test_format_all.rs │ ├── test_format_stdin.rs │ └── test_style_args.rs ├── docs ├── .gitignore ├── assets │ └── generated │ │ └── .gitignore ├── book.typ ├── deps.typ ├── ebook.typ ├── pages │ ├── architecture.typ │ ├── book.typ │ ├── changelog.typ │ ├── cli-usage.typ │ ├── dev-guide.typ │ ├── dev-guide │ │ ├── core.typ │ │ ├── documentation.typ │ │ ├── playground.typ │ │ └── release-process.typ │ ├── escape-hatch.typ │ ├── features.typ │ ├── features │ │ ├── code.typ │ │ ├── markup.typ │ │ ├── math.typ │ │ └── table.typ │ ├── installation.typ │ ├── introduction.typ │ ├── limitations.typ │ └── quick-start.typ └── templates │ ├── components │ ├── callout.typ │ ├── example.typ │ └── mod.typ │ ├── constants.typ │ ├── ebook.typ │ ├── metadata.typ │ ├── page.typ │ ├── rules.typ │ ├── scripts │ └── copy-to-clipboard.js │ ├── styles │ ├── base.css │ ├── callout.css │ ├── example.css │ ├── hypraw-copy-button.css │ ├── hypraw-line-numbers.css │ └── hypraw.css │ ├── theme-style.toml │ ├── tokyo-night.tmTheme │ └── version.typ ├── justfile ├── overrides └── partials │ └── integrations │ └── analytics │ └── cf.html ├── playground ├── .gitignore ├── .prettierrc ├── README.md ├── biome.jsonc ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ └── typst.tmLanguage.json ├── src │ ├── App.tsx │ ├── Playground.tsx │ ├── assets │ │ ├── language-configuration.json │ │ └── sample-manifest.json │ ├── components │ │ ├── ErrorBoundary.tsx │ │ ├── FloatingErrorCard.tsx │ │ ├── Header.tsx │ │ ├── MainLayout.tsx │ │ ├── editor │ │ │ ├── CodeEditor.tsx │ │ │ ├── OutputEditor.tsx │ │ │ ├── SourceEditor.tsx │ │ │ └── index.ts │ │ ├── forms │ │ │ ├── RangeControls.tsx │ │ │ ├── SampleDocumentSelector.tsx │ │ │ └── SettingsPanel.tsx │ │ └── ui │ │ │ ├── Icons.tsx │ │ │ ├── LoadingSpinner.tsx │ │ │ ├── ShareModal.tsx │ │ │ ├── StatusBar.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── Toast.tsx │ │ │ ├── ToastContainer.tsx │ │ │ └── index.ts │ ├── config │ │ ├── monaco.ts │ │ └── typst-language.ts │ ├── contexts │ │ ├── ThemeProvider.tsx │ │ ├── index.ts │ │ └── theme-context.ts │ ├── hooks │ │ ├── index.ts │ │ ├── use-editor-selection.ts │ │ ├── use-playground-state.ts │ │ ├── use-screen-size.ts │ │ ├── use-theme.ts │ │ ├── use-typst-formatter.ts │ │ ├── useErrorHandler.ts │ │ ├── useShareManager.ts │ │ └── useToast.ts │ ├── main.tsx │ ├── monaco │ │ ├── index.ts │ │ ├── language-registry.ts │ │ ├── textmate.ts │ │ ├── theme-registry.ts │ │ └── types.ts │ ├── styles │ │ ├── components.css │ │ ├── index.css │ │ └── theme.css │ ├── test │ │ ├── integration.test.tsx │ │ └── wasm-binding.test.ts │ ├── types.ts │ ├── utils │ │ ├── editor-selection.ts │ │ ├── formatter.ts │ │ ├── global-error-handlers.ts │ │ ├── pastebin.ts │ │ ├── sample-loader.ts │ │ └── url.ts │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── scripts └── generate-imports.py └── tests ├── .gitignore ├── Cargo.toml ├── fixtures ├── ai │ ├── README.md │ ├── basic │ │ ├── academic.typ │ │ ├── basic.typ │ │ ├── cookbook.typ │ │ ├── mathematics.typ │ │ ├── presentation.typ │ │ ├── snap │ │ │ ├── academic.typ-0.snap │ │ │ ├── academic.typ-120.snap │ │ │ ├── academic.typ-40.snap │ │ │ ├── academic.typ-80.snap │ │ │ ├── basic.typ-0.snap │ │ │ ├── basic.typ-120.snap │ │ │ ├── basic.typ-40.snap │ │ │ ├── basic.typ-80.snap │ │ │ ├── cookbook.typ-0.snap │ │ │ ├── cookbook.typ-120.snap │ │ │ ├── cookbook.typ-40.snap │ │ │ ├── cookbook.typ-80.snap │ │ │ ├── mathematics.typ-0.snap │ │ │ ├── mathematics.typ-120.snap │ │ │ ├── mathematics.typ-40.snap │ │ │ ├── mathematics.typ-80.snap │ │ │ ├── presentation.typ-0.snap │ │ │ ├── presentation.typ-120.snap │ │ │ ├── presentation.typ-40.snap │ │ │ ├── presentation.typ-80.snap │ │ │ ├── technical.typ-0.snap │ │ │ ├── technical.typ-120.snap │ │ │ ├── technical.typ-40.snap │ │ │ └── technical.typ-80.snap │ │ └── technical.typ │ ├── feat-ugly │ │ ├── code-blocks.typ │ │ ├── comment-formatting.typ │ │ ├── data-structures-simple.typ │ │ ├── function-calls.typ │ │ ├── snap │ │ │ ├── code-blocks.typ-0.snap │ │ │ ├── code-blocks.typ-120.snap │ │ │ ├── code-blocks.typ-40.snap │ │ │ ├── code-blocks.typ-80.snap │ │ │ ├── comment-formatting.typ-0.snap │ │ │ ├── comment-formatting.typ-120.snap │ │ │ ├── comment-formatting.typ-40.snap │ │ │ ├── comment-formatting.typ-80.snap │ │ │ ├── data-structures-simple.typ-0.snap │ │ │ ├── data-structures-simple.typ-120.snap │ │ │ ├── data-structures-simple.typ-40.snap │ │ │ ├── data-structures-simple.typ-80.snap │ │ │ ├── function-calls.typ-0.snap │ │ │ ├── function-calls.typ-120.snap │ │ │ ├── function-calls.typ-40.snap │ │ │ ├── function-calls.typ-80.snap │ │ │ ├── table-formatting.typ-0.snap │ │ │ ├── table-formatting.typ-120.snap │ │ │ ├── table-formatting.typ-40.snap │ │ │ └── table-formatting.typ-80.snap │ │ └── table-formatting.typ │ ├── feat │ │ ├── advanced-functions.typ │ │ ├── argument-patterns.typ │ │ ├── comments-code.typ │ │ ├── comprehensive-showcase.typ │ │ ├── data-processing.typ │ │ ├── data-structures.typ │ │ ├── math-expressions.typ │ │ ├── mixed-content.typ │ │ ├── mixed-markup.typ │ │ ├── snap │ │ │ ├── advanced-functions.typ-0.snap │ │ │ ├── advanced-functions.typ-120.snap │ │ │ ├── advanced-functions.typ-40.snap │ │ │ ├── advanced-functions.typ-80.snap │ │ │ ├── argument-patterns.typ-0.snap │ │ │ ├── argument-patterns.typ-120.snap │ │ │ ├── argument-patterns.typ-40.snap │ │ │ ├── argument-patterns.typ-80.snap │ │ │ ├── comments-code.typ-0.snap │ │ │ ├── comments-code.typ-120.snap │ │ │ ├── comments-code.typ-40.snap │ │ │ ├── comments-code.typ-80.snap │ │ │ ├── comprehensive-showcase.typ-0.snap │ │ │ ├── comprehensive-showcase.typ-120.snap │ │ │ ├── comprehensive-showcase.typ-40.snap │ │ │ ├── comprehensive-showcase.typ-80.snap │ │ │ ├── data-processing.typ-0.snap │ │ │ ├── data-processing.typ-120.snap │ │ │ ├── data-processing.typ-40.snap │ │ │ ├── data-processing.typ-80.snap │ │ │ ├── data-structures.typ-0.snap │ │ │ ├── data-structures.typ-120.snap │ │ │ ├── data-structures.typ-40.snap │ │ │ ├── data-structures.typ-80.snap │ │ │ ├── math-expressions.typ-0.snap │ │ │ ├── math-expressions.typ-120.snap │ │ │ ├── math-expressions.typ-40.snap │ │ │ ├── math-expressions.typ-80.snap │ │ │ ├── mixed-content.typ-0.snap │ │ │ ├── mixed-content.typ-120.snap │ │ │ ├── mixed-content.typ-40.snap │ │ │ ├── mixed-content.typ-80.snap │ │ │ ├── mixed-markup.typ-0.snap │ │ │ ├── mixed-markup.typ-120.snap │ │ │ ├── mixed-markup.typ-40.snap │ │ │ ├── mixed-markup.typ-80.snap │ │ │ ├── table-showcase.typ-0.snap │ │ │ ├── table-showcase.typ-120.snap │ │ │ ├── table-showcase.typ-40.snap │ │ │ └── table-showcase.typ-80.snap │ │ └── table-showcase.typ │ └── show │ │ ├── primes.typ │ │ ├── snap │ │ ├── primes.typ-0.snap │ │ ├── primes.typ-120.snap │ │ ├── primes.typ-40.snap │ │ ├── primes.typ-80.snap │ │ ├── version-history-1.typ-0.snap │ │ ├── version-history-1.typ-120.snap │ │ ├── version-history-1.typ-40.snap │ │ ├── version-history-1.typ-80.snap │ │ ├── version-history-2.typ-0.snap │ │ ├── version-history-2.typ-120.snap │ │ ├── version-history-2.typ-40.snap │ │ ├── version-history-2.typ-80.snap │ │ ├── version-history-3.typ-0.snap │ │ ├── version-history-3.typ-120.snap │ │ ├── version-history-3.typ-40.snap │ │ └── version-history-3.typ-80.snap │ │ ├── version-history-1.typ │ │ ├── version-history-2.typ │ │ └── version-history-3.typ ├── articles │ ├── _cpe.typ │ ├── book.typ │ ├── physics-experiment.typ │ ├── serve.typ │ ├── snap │ │ ├── book.typ-0.snap │ │ ├── book.typ-120.snap │ │ ├── book.typ-40.snap │ │ ├── book.typ-80.snap │ │ ├── physics-experiment.typ-0.snap │ │ ├── physics-experiment.typ-120.snap │ │ ├── physics-experiment.typ-40.snap │ │ ├── physics-experiment.typ-80.snap │ │ ├── serve.typ-0.snap │ │ ├── serve.typ-120.snap │ │ ├── serve.typ-40.snap │ │ ├── serve.typ-80.snap │ │ ├── undergraduate-math.typ-0.snap │ │ ├── undergraduate-math.typ-120.snap │ │ ├── undergraduate-math.typ-40.snap │ │ └── undergraduate-math.typ-80.snap │ └── undergraduate-math.typ ├── e2e-repos.toml ├── packages │ ├── cetz-manual.typ │ ├── cetz-tree.typ │ ├── codly.typ │ ├── cuti.typ │ ├── fletcher-diagram.typ │ ├── fletcher-draw.typ │ ├── indenta.typ │ ├── quill-gallery.typ │ ├── simple-paper.typ │ ├── snap │ │ ├── cetz-manual.typ-0.snap │ │ ├── cetz-manual.typ-120.snap │ │ ├── cetz-manual.typ-40.snap │ │ ├── cetz-manual.typ-80.snap │ │ ├── cetz-tree.typ-0.snap │ │ ├── cetz-tree.typ-120.snap │ │ ├── cetz-tree.typ-40.snap │ │ ├── cetz-tree.typ-80.snap │ │ ├── codly.typ-0.snap │ │ ├── codly.typ-120.snap │ │ ├── codly.typ-40.snap │ │ ├── codly.typ-80.snap │ │ ├── cuti.typ-0.snap │ │ ├── cuti.typ-120.snap │ │ ├── cuti.typ-40.snap │ │ ├── cuti.typ-80.snap │ │ ├── fletcher-diagram.typ-0.snap │ │ ├── fletcher-diagram.typ-120.snap │ │ ├── fletcher-diagram.typ-40.snap │ │ ├── fletcher-diagram.typ-80.snap │ │ ├── fletcher-draw.typ-0.snap │ │ ├── fletcher-draw.typ-120.snap │ │ ├── fletcher-draw.typ-40.snap │ │ ├── fletcher-draw.typ-80.snap │ │ ├── indenta.typ-0.snap │ │ ├── indenta.typ-120.snap │ │ ├── indenta.typ-40.snap │ │ ├── indenta.typ-80.snap │ │ ├── quill-gallery.typ-0.snap │ │ ├── quill-gallery.typ-120.snap │ │ ├── quill-gallery.typ-40.snap │ │ ├── quill-gallery.typ-80.snap │ │ ├── simple-paper.typ-0.snap │ │ ├── simple-paper.typ-120.snap │ │ ├── simple-paper.typ-40.snap │ │ ├── simple-paper.typ-80.snap │ │ ├── tablex.typ-0.snap │ │ ├── tablex.typ-120.snap │ │ ├── tablex.typ-40.snap │ │ ├── tablex.typ-80.snap │ │ ├── tidy-new-parser.typ-0.snap │ │ ├── tidy-new-parser.typ-120.snap │ │ ├── tidy-new-parser.typ-40.snap │ │ └── tidy-new-parser.typ-80.snap │ ├── tablex.typ │ ├── tidy-new-parser.typ │ └── touying │ │ ├── core.typ │ │ ├── snap │ │ ├── core.typ-0.snap │ │ ├── core.typ-120.snap │ │ ├── core.typ-40.snap │ │ ├── core.typ-80.snap │ │ ├── utils.typ-0.snap │ │ ├── utils.typ-120.snap │ │ ├── utils.typ-40.snap │ │ └── utils.typ-80.snap │ │ └── utils.typ ├── partial │ ├── erroneous.typ │ ├── indenta.typ │ └── snap │ │ ├── erroneous.typ-17_20.snap │ │ ├── erroneous.typ-25_30.snap │ │ ├── erroneous.typ-36_40.snap │ │ ├── erroneous.typ-53_56.snap │ │ ├── erroneous.typ-5_10.snap │ │ ├── indenta.typ-200_300.snap │ │ ├── indenta.typ-387_713.snap │ │ ├── indenta.typ-80_85.snap │ │ └── indenta.typ-867_869.snap ├── typstfmt │ ├── 100-email.typ │ ├── 102-non-converge-math-mat.typ │ ├── 113-math-indent.typ │ ├── 124-block-comment.typ │ ├── 136-raw.typ │ ├── 137-math-align-panic.typ │ ├── 138-non-converge-block-comment.typ │ ├── 139-block-comment.typ │ ├── 148-broken-input.typ │ ├── 160-fletcher.typ │ ├── 80-func-call-with-label.typ │ ├── 82-non-converge-list.typ │ ├── 84-ws-text-code.typ │ ├── 85-ws-quote.typ │ ├── 88-markup-hardline.typ │ ├── 93-math-stop.typ │ ├── 95-space-before-math.typ │ ├── 96-destruct-comma.typ │ └── snap │ │ ├── 100-email.typ-0.snap │ │ ├── 100-email.typ-120.snap │ │ ├── 100-email.typ-40.snap │ │ ├── 100-email.typ-80.snap │ │ ├── 102-non-converge-math-mat.typ-0.snap │ │ ├── 102-non-converge-math-mat.typ-120.snap │ │ ├── 102-non-converge-math-mat.typ-40.snap │ │ ├── 102-non-converge-math-mat.typ-80.snap │ │ ├── 113-math-indent.typ-0.snap │ │ ├── 113-math-indent.typ-120.snap │ │ ├── 113-math-indent.typ-40.snap │ │ ├── 113-math-indent.typ-80.snap │ │ ├── 124-block-comment.typ-0.snap │ │ ├── 124-block-comment.typ-120.snap │ │ ├── 124-block-comment.typ-40.snap │ │ ├── 124-block-comment.typ-80.snap │ │ ├── 136-raw.typ-0.snap │ │ ├── 136-raw.typ-120.snap │ │ ├── 136-raw.typ-40.snap │ │ ├── 136-raw.typ-80.snap │ │ ├── 137-math-align-panic.typ-0.snap │ │ ├── 137-math-align-panic.typ-120.snap │ │ ├── 137-math-align-panic.typ-40.snap │ │ ├── 137-math-align-panic.typ-80.snap │ │ ├── 138-non-converge-block-comment.typ-0.snap │ │ ├── 138-non-converge-block-comment.typ-120.snap │ │ ├── 138-non-converge-block-comment.typ-40.snap │ │ ├── 138-non-converge-block-comment.typ-80.snap │ │ ├── 139-block-comment.typ-0.snap │ │ ├── 139-block-comment.typ-120.snap │ │ ├── 139-block-comment.typ-40.snap │ │ ├── 139-block-comment.typ-80.snap │ │ ├── 148-broken-input.typ-0.snap │ │ ├── 148-broken-input.typ-120.snap │ │ ├── 148-broken-input.typ-40.snap │ │ ├── 148-broken-input.typ-80.snap │ │ ├── 160-fletcher.typ-0.snap │ │ ├── 160-fletcher.typ-120.snap │ │ ├── 160-fletcher.typ-40.snap │ │ ├── 160-fletcher.typ-80.snap │ │ ├── 80-func-call-with-label.typ-0.snap │ │ ├── 80-func-call-with-label.typ-120.snap │ │ ├── 80-func-call-with-label.typ-40.snap │ │ ├── 80-func-call-with-label.typ-80.snap │ │ ├── 82-non-converge-list.typ-0.snap │ │ ├── 82-non-converge-list.typ-120.snap │ │ ├── 82-non-converge-list.typ-40.snap │ │ ├── 82-non-converge-list.typ-80.snap │ │ ├── 84-ws-text-code.typ-0.snap │ │ ├── 84-ws-text-code.typ-120.snap │ │ ├── 84-ws-text-code.typ-40.snap │ │ ├── 84-ws-text-code.typ-80.snap │ │ ├── 85-ws-quote.typ-0.snap │ │ ├── 85-ws-quote.typ-120.snap │ │ ├── 85-ws-quote.typ-40.snap │ │ ├── 85-ws-quote.typ-80.snap │ │ ├── 88-markup-hardline.typ-0.snap │ │ ├── 88-markup-hardline.typ-120.snap │ │ ├── 88-markup-hardline.typ-40.snap │ │ ├── 88-markup-hardline.typ-80.snap │ │ ├── 93-math-stop.typ-0.snap │ │ ├── 93-math-stop.typ-120.snap │ │ ├── 93-math-stop.typ-40.snap │ │ ├── 93-math-stop.typ-80.snap │ │ ├── 95-space-before-math.typ-0.snap │ │ ├── 95-space-before-math.typ-120.snap │ │ ├── 95-space-before-math.typ-40.snap │ │ ├── 95-space-before-math.typ-80.snap │ │ ├── 96-destruct-comma.typ-0.snap │ │ ├── 96-destruct-comma.typ-120.snap │ │ ├── 96-destruct-comma.typ-40.snap │ │ └── 96-destruct-comma.typ-80.snap └── unit │ ├── code │ ├── args │ │ ├── compact-complex.typ │ │ ├── compact-simple.typ │ │ ├── flavor.typ │ │ ├── last-arg.typ │ │ ├── simple.typ │ │ ├── snap │ │ │ ├── compact-complex.typ-0.snap │ │ │ ├── compact-complex.typ-120.snap │ │ │ ├── compact-complex.typ-40.snap │ │ │ ├── compact-complex.typ-80.snap │ │ │ ├── compact-simple.typ-0.snap │ │ │ ├── compact-simple.typ-120.snap │ │ │ ├── compact-simple.typ-40.snap │ │ │ ├── compact-simple.typ-80.snap │ │ │ ├── flavor.typ-0.snap │ │ │ ├── flavor.typ-120.snap │ │ │ ├── flavor.typ-40.snap │ │ │ ├── flavor.typ-80.snap │ │ │ ├── last-arg.typ-0.snap │ │ │ ├── last-arg.typ-120.snap │ │ │ ├── last-arg.typ-40.snap │ │ │ ├── last-arg.typ-80.snap │ │ │ ├── simple.typ-0.snap │ │ │ ├── simple.typ-120.snap │ │ │ ├── simple.typ-40.snap │ │ │ ├── simple.typ-80.snap │ │ │ ├── spread.typ-0.snap │ │ │ ├── spread.typ-120.snap │ │ │ ├── spread.typ-40.snap │ │ │ ├── spread.typ-80.snap │ │ │ ├── tight.typ-0.snap │ │ │ ├── tight.typ-120.snap │ │ │ ├── tight.typ-40.snap │ │ │ ├── tight.typ-80.snap │ │ │ ├── with-newline.typ-0.snap │ │ │ ├── with-newline.typ-120.snap │ │ │ ├── with-newline.typ-40.snap │ │ │ └── with-newline.typ-80.snap │ │ ├── spread.typ │ │ ├── tight.typ │ │ └── with-newline.typ │ ├── array-flavor.typ │ ├── array.typ │ ├── block-short.typ │ ├── chain │ │ ├── binary-0.typ │ │ ├── binary.typ │ │ ├── call-compileable.typ │ │ ├── call-last-indent.typ │ │ ├── call.typ │ │ └── snap │ │ │ ├── binary-0.typ-0.snap │ │ │ ├── binary-0.typ-120.snap │ │ │ ├── binary-0.typ-40.snap │ │ │ ├── binary-0.typ-80.snap │ │ │ ├── binary.typ-0.snap │ │ │ ├── binary.typ-120.snap │ │ │ ├── binary.typ-40.snap │ │ │ ├── binary.typ-80.snap │ │ │ ├── call-compileable.typ-0.snap │ │ │ ├── call-compileable.typ-120.snap │ │ │ ├── call-compileable.typ-40.snap │ │ │ ├── call-compileable.typ-80.snap │ │ │ ├── call-last-indent.typ-0.snap │ │ │ ├── call-last-indent.typ-120.snap │ │ │ ├── call-last-indent.typ-40.snap │ │ │ ├── call-last-indent.typ-80.snap │ │ │ ├── call.typ-0.snap │ │ │ ├── call.typ-120.snap │ │ │ ├── call.typ-40.snap │ │ │ └── call.typ-80.snap │ ├── closure-simple.typ │ ├── closure-single-arg.typ │ ├── cond.typ │ ├── context.typ │ ├── destruct-single-elem.typ │ ├── destruction.typ │ ├── dict-flavor.typ │ ├── dict-special.typ │ ├── dot-chain.typ │ ├── equation-dot-chain.typ │ ├── for-loop-line-break.typ │ ├── func_call_multiline.typ │ ├── if-chain.typ │ ├── if-short.typ │ ├── if-while-else.typ │ ├── import-items.typ │ ├── import-reorder.typ │ ├── import.typ │ ├── include.typ │ ├── let-closure.typ │ ├── param-len.typ │ ├── params-flavor.typ │ ├── paren-extra.typ │ ├── paren-in-key.typ │ ├── perf-nest.typ │ ├── set-if.typ │ ├── set-rule.typ │ ├── show-chain.typ │ ├── show-closure-1.typ │ ├── show-closure-paren-complex.typ │ ├── show-closure-paren.typ │ ├── show-closure.typ │ ├── show-set.typ │ ├── snap │ │ ├── array-flavor.typ-0.snap │ │ ├── array-flavor.typ-120.snap │ │ ├── array-flavor.typ-40.snap │ │ ├── array-flavor.typ-80.snap │ │ ├── array.typ-0.snap │ │ ├── array.typ-120.snap │ │ ├── array.typ-40.snap │ │ ├── array.typ-80.snap │ │ ├── block-short.typ-0.snap │ │ ├── block-short.typ-120.snap │ │ ├── block-short.typ-40.snap │ │ ├── block-short.typ-80.snap │ │ ├── closure-simple.typ-0.snap │ │ ├── closure-simple.typ-120.snap │ │ ├── closure-simple.typ-40.snap │ │ ├── closure-simple.typ-80.snap │ │ ├── closure-single-arg.typ-0.snap │ │ ├── closure-single-arg.typ-120.snap │ │ ├── closure-single-arg.typ-40.snap │ │ ├── closure-single-arg.typ-80.snap │ │ ├── cond.typ-0.snap │ │ ├── cond.typ-120.snap │ │ ├── cond.typ-40.snap │ │ ├── cond.typ-80.snap │ │ ├── context.typ-0.snap │ │ ├── context.typ-120.snap │ │ ├── context.typ-40.snap │ │ ├── context.typ-80.snap │ │ ├── destruct-single-elem.typ-0.snap │ │ ├── destruct-single-elem.typ-120.snap │ │ ├── destruct-single-elem.typ-40.snap │ │ ├── destruct-single-elem.typ-80.snap │ │ ├── destruction.typ-0.snap │ │ ├── destruction.typ-120.snap │ │ ├── destruction.typ-40.snap │ │ ├── destruction.typ-80.snap │ │ ├── dict-flavor.typ-0.snap │ │ ├── dict-flavor.typ-120.snap │ │ ├── dict-flavor.typ-40.snap │ │ ├── dict-flavor.typ-80.snap │ │ ├── dict-special.typ-0.snap │ │ ├── dict-special.typ-120.snap │ │ ├── dict-special.typ-40.snap │ │ ├── dict-special.typ-80.snap │ │ ├── dot-chain.typ-0.snap │ │ ├── dot-chain.typ-120.snap │ │ ├── dot-chain.typ-40.snap │ │ ├── dot-chain.typ-80.snap │ │ ├── equation-dot-chain.typ-0.snap │ │ ├── equation-dot-chain.typ-120.snap │ │ ├── equation-dot-chain.typ-40.snap │ │ ├── equation-dot-chain.typ-80.snap │ │ ├── for-loop-line-break.typ-0.snap │ │ ├── for-loop-line-break.typ-120.snap │ │ ├── for-loop-line-break.typ-40.snap │ │ ├── for-loop-line-break.typ-80.snap │ │ ├── func_call_multiline.typ-0.snap │ │ ├── func_call_multiline.typ-120.snap │ │ ├── func_call_multiline.typ-40.snap │ │ ├── func_call_multiline.typ-80.snap │ │ ├── if-chain.typ-0.snap │ │ ├── if-chain.typ-120.snap │ │ ├── if-chain.typ-40.snap │ │ ├── if-chain.typ-80.snap │ │ ├── if-short.typ-0.snap │ │ ├── if-short.typ-120.snap │ │ ├── if-short.typ-40.snap │ │ ├── if-short.typ-80.snap │ │ ├── if-while-else.typ-0.snap │ │ ├── if-while-else.typ-120.snap │ │ ├── if-while-else.typ-40.snap │ │ ├── if-while-else.typ-80.snap │ │ ├── import-items.typ-0.snap │ │ ├── import-items.typ-120.snap │ │ ├── import-items.typ-40.snap │ │ ├── import-items.typ-80.snap │ │ ├── import-reorder.typ-0.snap │ │ ├── import-reorder.typ-120.snap │ │ ├── import-reorder.typ-40.snap │ │ ├── import-reorder.typ-80.snap │ │ ├── import.typ-0.snap │ │ ├── import.typ-120.snap │ │ ├── import.typ-40.snap │ │ ├── import.typ-80.snap │ │ ├── include.typ-0.snap │ │ ├── include.typ-120.snap │ │ ├── include.typ-40.snap │ │ ├── include.typ-80.snap │ │ ├── let-closure.typ-0.snap │ │ ├── let-closure.typ-120.snap │ │ ├── let-closure.typ-40.snap │ │ ├── let-closure.typ-80.snap │ │ ├── param-len.typ-0.snap │ │ ├── param-len.typ-120.snap │ │ ├── param-len.typ-40.snap │ │ ├── param-len.typ-80.snap │ │ ├── params-flavor.typ-0.snap │ │ ├── params-flavor.typ-120.snap │ │ ├── params-flavor.typ-40.snap │ │ ├── params-flavor.typ-80.snap │ │ ├── paren-extra.typ-0.snap │ │ ├── paren-extra.typ-120.snap │ │ ├── paren-extra.typ-40.snap │ │ ├── paren-extra.typ-80.snap │ │ ├── paren-in-key.typ-0.snap │ │ ├── paren-in-key.typ-120.snap │ │ ├── paren-in-key.typ-40.snap │ │ ├── paren-in-key.typ-80.snap │ │ ├── perf-nest.typ-0.snap │ │ ├── perf-nest.typ-120.snap │ │ ├── perf-nest.typ-40.snap │ │ ├── perf-nest.typ-80.snap │ │ ├── set-if.typ-0.snap │ │ ├── set-if.typ-120.snap │ │ ├── set-if.typ-40.snap │ │ ├── set-if.typ-80.snap │ │ ├── set-rule.typ-0.snap │ │ ├── set-rule.typ-120.snap │ │ ├── set-rule.typ-40.snap │ │ ├── set-rule.typ-80.snap │ │ ├── show-chain.typ-0.snap │ │ ├── show-chain.typ-120.snap │ │ ├── show-chain.typ-40.snap │ │ ├── show-chain.typ-80.snap │ │ ├── show-closure-1.typ-0.snap │ │ ├── show-closure-1.typ-120.snap │ │ ├── show-closure-1.typ-40.snap │ │ ├── show-closure-1.typ-80.snap │ │ ├── show-closure-paren-complex.typ-0.snap │ │ ├── show-closure-paren-complex.typ-120.snap │ │ ├── show-closure-paren-complex.typ-40.snap │ │ ├── show-closure-paren-complex.typ-80.snap │ │ ├── show-closure-paren.typ-0.snap │ │ ├── show-closure-paren.typ-120.snap │ │ ├── show-closure-paren.typ-40.snap │ │ ├── show-closure-paren.typ-80.snap │ │ ├── show-closure.typ-0.snap │ │ ├── show-closure.typ-120.snap │ │ ├── show-closure.typ-40.snap │ │ ├── show-closure.typ-80.snap │ │ ├── show-set.typ-0.snap │ │ ├── show-set.typ-120.snap │ │ ├── show-set.typ-40.snap │ │ ├── show-set.typ-80.snap │ │ ├── string-multiline.typ-0.snap │ │ ├── string-multiline.typ-120.snap │ │ ├── string-multiline.typ-40.snap │ │ └── string-multiline.typ-80.snap │ └── string-multiline.typ │ ├── comment │ ├── block-align.typ │ ├── block.typ │ ├── consecutive.typ │ ├── convergence.typ │ ├── in-array.typ │ ├── in-block-short.typ │ ├── in-chain-binary.typ │ ├── in-chain-call.typ │ ├── in-chain-standalone.typ │ ├── in-closure.typ │ ├── in-code.typ │ ├── in-content.typ │ ├── in-destruct.typ │ ├── in-dict.typ │ ├── in-equation.typ │ ├── in-for.typ │ ├── in-func-call.typ │ ├── in-if.typ │ ├── in-import.typ │ ├── in-include.typ │ ├── in-markup.typ │ ├── in-math-args.typ │ ├── in-math.typ │ ├── in-params.typ │ ├── in-showset.typ │ ├── in-while.typ │ ├── line-attach.typ │ ├── line.typ │ └── snap │ │ ├── block-align.typ-0.snap │ │ ├── block-align.typ-120.snap │ │ ├── block-align.typ-40.snap │ │ ├── block-align.typ-80.snap │ │ ├── block.typ-0.snap │ │ ├── block.typ-120.snap │ │ ├── block.typ-40.snap │ │ ├── block.typ-80.snap │ │ ├── consecutive.typ-0.snap │ │ ├── consecutive.typ-120.snap │ │ ├── consecutive.typ-40.snap │ │ ├── consecutive.typ-80.snap │ │ ├── convergence.typ-0.snap │ │ ├── convergence.typ-120.snap │ │ ├── convergence.typ-40.snap │ │ ├── convergence.typ-80.snap │ │ ├── in-array.typ-0.snap │ │ ├── in-array.typ-120.snap │ │ ├── in-array.typ-40.snap │ │ ├── in-array.typ-80.snap │ │ ├── in-block-short.typ-0.snap │ │ ├── in-block-short.typ-120.snap │ │ ├── in-block-short.typ-40.snap │ │ ├── in-block-short.typ-80.snap │ │ ├── in-chain-binary.typ-0.snap │ │ ├── in-chain-binary.typ-120.snap │ │ ├── in-chain-binary.typ-40.snap │ │ ├── in-chain-binary.typ-80.snap │ │ ├── in-chain-call.typ-0.snap │ │ ├── in-chain-call.typ-120.snap │ │ ├── in-chain-call.typ-40.snap │ │ ├── in-chain-call.typ-80.snap │ │ ├── in-chain-standalone.typ-0.snap │ │ ├── in-chain-standalone.typ-120.snap │ │ ├── in-chain-standalone.typ-40.snap │ │ ├── in-chain-standalone.typ-80.snap │ │ ├── in-closure.typ-0.snap │ │ ├── in-closure.typ-120.snap │ │ ├── in-closure.typ-40.snap │ │ ├── in-closure.typ-80.snap │ │ ├── in-code.typ-0.snap │ │ ├── in-code.typ-120.snap │ │ ├── in-code.typ-40.snap │ │ ├── in-code.typ-80.snap │ │ ├── in-content.typ-0.snap │ │ ├── in-content.typ-120.snap │ │ ├── in-content.typ-40.snap │ │ ├── in-content.typ-80.snap │ │ ├── in-destruct.typ-0.snap │ │ ├── in-destruct.typ-120.snap │ │ ├── in-destruct.typ-40.snap │ │ ├── in-destruct.typ-80.snap │ │ ├── in-dict.typ-0.snap │ │ ├── in-dict.typ-120.snap │ │ ├── in-dict.typ-40.snap │ │ ├── in-dict.typ-80.snap │ │ ├── in-equation.typ-0.snap │ │ ├── in-equation.typ-120.snap │ │ ├── in-equation.typ-40.snap │ │ ├── in-equation.typ-80.snap │ │ ├── in-for.typ-0.snap │ │ ├── in-for.typ-120.snap │ │ ├── in-for.typ-40.snap │ │ ├── in-for.typ-80.snap │ │ ├── in-func-call.typ-0.snap │ │ ├── in-func-call.typ-120.snap │ │ ├── in-func-call.typ-40.snap │ │ ├── in-func-call.typ-80.snap │ │ ├── in-if.typ-0.snap │ │ ├── in-if.typ-120.snap │ │ ├── in-if.typ-40.snap │ │ ├── in-if.typ-80.snap │ │ ├── in-import.typ-0.snap │ │ ├── in-import.typ-120.snap │ │ ├── in-import.typ-40.snap │ │ ├── in-import.typ-80.snap │ │ ├── in-include.typ-0.snap │ │ ├── in-include.typ-120.snap │ │ ├── in-include.typ-40.snap │ │ ├── in-include.typ-80.snap │ │ ├── in-markup.typ-0.snap │ │ ├── in-markup.typ-120.snap │ │ ├── in-markup.typ-40.snap │ │ ├── in-markup.typ-80.snap │ │ ├── in-math-args.typ-0.snap │ │ ├── in-math-args.typ-120.snap │ │ ├── in-math-args.typ-40.snap │ │ ├── in-math-args.typ-80.snap │ │ ├── in-math.typ-0.snap │ │ ├── in-math.typ-120.snap │ │ ├── in-math.typ-40.snap │ │ ├── in-math.typ-80.snap │ │ ├── in-params.typ-0.snap │ │ ├── in-params.typ-120.snap │ │ ├── in-params.typ-40.snap │ │ ├── in-params.typ-80.snap │ │ ├── in-showset.typ-0.snap │ │ ├── in-showset.typ-120.snap │ │ ├── in-showset.typ-40.snap │ │ ├── in-showset.typ-80.snap │ │ ├── in-while.typ-0.snap │ │ ├── in-while.typ-120.snap │ │ ├── in-while.typ-40.snap │ │ ├── in-while.typ-80.snap │ │ ├── line-attach.typ-0.snap │ │ ├── line-attach.typ-120.snap │ │ ├── line-attach.typ-40.snap │ │ ├── line-attach.typ-80.snap │ │ ├── line.typ-0.snap │ │ ├── line.typ-120.snap │ │ ├── line.typ-40.snap │ │ └── line.typ-80.snap │ ├── document │ ├── empty-parbreak.typ │ ├── empty-space.typ │ ├── empty.typ │ ├── snap │ │ ├── empty-parbreak.typ-0.snap │ │ ├── empty-parbreak.typ-120.snap │ │ ├── empty-parbreak.typ-40.snap │ │ ├── empty-parbreak.typ-80.snap │ │ ├── empty-space.typ-0.snap │ │ ├── empty-space.typ-120.snap │ │ ├── empty-space.typ-40.snap │ │ ├── empty-space.typ-80.snap │ │ ├── empty.typ-0.snap │ │ ├── empty.typ-120.snap │ │ ├── empty.typ-40.snap │ │ ├── empty.typ-80.snap │ │ ├── top-comment-00.typ-0.snap │ │ ├── top-comment-00.typ-120.snap │ │ ├── top-comment-00.typ-40.snap │ │ ├── top-comment-00.typ-80.snap │ │ ├── top-comment-01.typ-0.snap │ │ ├── top-comment-01.typ-120.snap │ │ ├── top-comment-01.typ-40.snap │ │ ├── top-comment-01.typ-80.snap │ │ ├── top-comment-10.typ-0.snap │ │ ├── top-comment-10.typ-120.snap │ │ ├── top-comment-10.typ-40.snap │ │ ├── top-comment-10.typ-80.snap │ │ ├── top-comment-11.typ-0.snap │ │ ├── top-comment-11.typ-120.snap │ │ ├── top-comment-11.typ-40.snap │ │ ├── top-comment-11.typ-80.snap │ │ ├── top-comment-20.typ-0.snap │ │ ├── top-comment-20.typ-120.snap │ │ ├── top-comment-20.typ-40.snap │ │ ├── top-comment-20.typ-80.snap │ │ ├── top-comment-21.typ-0.snap │ │ ├── top-comment-21.typ-120.snap │ │ ├── top-comment-21.typ-40.snap │ │ ├── top-comment-21.typ-80.snap │ │ ├── top-comment-30.typ-0.snap │ │ ├── top-comment-30.typ-120.snap │ │ ├── top-comment-30.typ-40.snap │ │ ├── top-comment-30.typ-80.snap │ │ ├── top-comment-31.typ-0.snap │ │ ├── top-comment-31.typ-120.snap │ │ ├── top-comment-31.typ-40.snap │ │ ├── top-comment-31.typ-80.snap │ │ ├── top-comment.typ-0.snap │ │ ├── top-comment.typ-120.snap │ │ ├── top-comment.typ-40.snap │ │ └── top-comment.typ-80.snap │ ├── top-comment-00.typ │ ├── top-comment-01.typ │ ├── top-comment-10.typ │ ├── top-comment-11.typ │ ├── top-comment-20.typ │ ├── top-comment-21.typ │ ├── top-comment-30.typ │ ├── top-comment-31.typ │ └── top-comment.typ │ ├── markup │ ├── content-compact-reflow.typ │ ├── content-compact-tricky.typ │ ├── content-compact.typ │ ├── content-compact2.typ │ ├── content-func.typ │ ├── content-multiline-reflow.typ │ ├── content-multiline.typ │ ├── content-nest.typ │ ├── content.typ │ ├── enum.typ │ ├── escape.typ │ ├── heading-empty.typ │ ├── heading.typ │ ├── indent-raw.typ │ ├── inline-block-raw.typ │ ├── linebreak.typ │ ├── list-indent-ex.typ │ ├── list-indent.typ │ ├── list-multiline.typ │ ├── list.typ │ ├── multi-tick-raw.typ │ ├── parbreak-multiline.typ │ ├── raw-backtick.typ │ ├── raw-in-funccall.typ │ ├── raw.typ │ ├── reflow │ │ ├── code.typ │ │ ├── commented.typ │ │ ├── exclusive.typ │ │ ├── exclusive2.typ │ │ ├── general.typ │ │ ├── linebreak.typ │ │ ├── marker.typ │ │ ├── multiline.typ │ │ ├── nested.typ │ │ ├── snap │ │ │ ├── code.typ-0.snap │ │ │ ├── code.typ-120.snap │ │ │ ├── code.typ-40.snap │ │ │ ├── code.typ-80.snap │ │ │ ├── commented.typ-0.snap │ │ │ ├── commented.typ-120.snap │ │ │ ├── commented.typ-40.snap │ │ │ ├── commented.typ-80.snap │ │ │ ├── exclusive.typ-0.snap │ │ │ ├── exclusive.typ-120.snap │ │ │ ├── exclusive.typ-40.snap │ │ │ ├── exclusive.typ-80.snap │ │ │ ├── exclusive2.typ-0.snap │ │ │ ├── exclusive2.typ-120.snap │ │ │ ├── exclusive2.typ-40.snap │ │ │ ├── exclusive2.typ-80.snap │ │ │ ├── general.typ-0.snap │ │ │ ├── general.typ-120.snap │ │ │ ├── general.typ-40.snap │ │ │ ├── general.typ-80.snap │ │ │ ├── linebreak.typ-0.snap │ │ │ ├── linebreak.typ-120.snap │ │ │ ├── linebreak.typ-40.snap │ │ │ ├── linebreak.typ-80.snap │ │ │ ├── marker.typ-0.snap │ │ │ ├── marker.typ-120.snap │ │ │ ├── marker.typ-40.snap │ │ │ ├── marker.typ-80.snap │ │ │ ├── multiline.typ-0.snap │ │ │ ├── multiline.typ-120.snap │ │ │ ├── multiline.typ-40.snap │ │ │ ├── multiline.typ-80.snap │ │ │ ├── nested.typ-0.snap │ │ │ ├── nested.typ-120.snap │ │ │ ├── nested.typ-40.snap │ │ │ ├── nested.typ-80.snap │ │ │ ├── spaces.typ-0.snap │ │ │ ├── spaces.typ-120.snap │ │ │ ├── spaces.typ-40.snap │ │ │ ├── spaces.typ-80.snap │ │ │ ├── unicode.typ-0.snap │ │ │ ├── unicode.typ-120.snap │ │ │ ├── unicode.typ-40.snap │ │ │ └── unicode.typ-80.snap │ │ ├── spaces.typ │ │ └── unicode.typ │ ├── shebang.typ │ ├── snap │ │ ├── content-compact-reflow.typ-0.snap │ │ ├── content-compact-reflow.typ-120.snap │ │ ├── content-compact-reflow.typ-40.snap │ │ ├── content-compact-reflow.typ-80.snap │ │ ├── content-compact-tricky.typ-0.snap │ │ ├── content-compact-tricky.typ-120.snap │ │ ├── content-compact-tricky.typ-40.snap │ │ ├── content-compact-tricky.typ-80.snap │ │ ├── content-compact.typ-0.snap │ │ ├── content-compact.typ-120.snap │ │ ├── content-compact.typ-40.snap │ │ ├── content-compact.typ-80.snap │ │ ├── content-compact2.typ-0.snap │ │ ├── content-compact2.typ-120.snap │ │ ├── content-compact2.typ-40.snap │ │ ├── content-compact2.typ-80.snap │ │ ├── content-func.typ-0.snap │ │ ├── content-func.typ-120.snap │ │ ├── content-func.typ-40.snap │ │ ├── content-func.typ-80.snap │ │ ├── content-multiline-reflow.typ-0.snap │ │ ├── content-multiline-reflow.typ-120.snap │ │ ├── content-multiline-reflow.typ-40.snap │ │ ├── content-multiline-reflow.typ-80.snap │ │ ├── content-multiline.typ-0.snap │ │ ├── content-multiline.typ-120.snap │ │ ├── content-multiline.typ-40.snap │ │ ├── content-multiline.typ-80.snap │ │ ├── content-nest.typ-0.snap │ │ ├── content-nest.typ-120.snap │ │ ├── content-nest.typ-40.snap │ │ ├── content-nest.typ-80.snap │ │ ├── content.typ-0.snap │ │ ├── content.typ-120.snap │ │ ├── content.typ-40.snap │ │ ├── content.typ-80.snap │ │ ├── enum.typ-0.snap │ │ ├── enum.typ-120.snap │ │ ├── enum.typ-40.snap │ │ ├── enum.typ-80.snap │ │ ├── escape.typ-0.snap │ │ ├── escape.typ-120.snap │ │ ├── escape.typ-40.snap │ │ ├── escape.typ-80.snap │ │ ├── heading-empty.typ-0.snap │ │ ├── heading-empty.typ-120.snap │ │ ├── heading-empty.typ-40.snap │ │ ├── heading-empty.typ-80.snap │ │ ├── heading.typ-0.snap │ │ ├── heading.typ-120.snap │ │ ├── heading.typ-40.snap │ │ ├── heading.typ-80.snap │ │ ├── indent-raw.typ-0.snap │ │ ├── indent-raw.typ-120.snap │ │ ├── indent-raw.typ-40.snap │ │ ├── indent-raw.typ-80.snap │ │ ├── inline-block-raw.typ-0.snap │ │ ├── inline-block-raw.typ-120.snap │ │ ├── inline-block-raw.typ-40.snap │ │ ├── inline-block-raw.typ-80.snap │ │ ├── linebreak.typ-0.snap │ │ ├── linebreak.typ-120.snap │ │ ├── linebreak.typ-40.snap │ │ ├── linebreak.typ-80.snap │ │ ├── list-indent-ex.typ-0.snap │ │ ├── list-indent-ex.typ-120.snap │ │ ├── list-indent-ex.typ-40.snap │ │ ├── list-indent-ex.typ-80.snap │ │ ├── list-indent.typ-0.snap │ │ ├── list-indent.typ-120.snap │ │ ├── list-indent.typ-40.snap │ │ ├── list-indent.typ-80.snap │ │ ├── list-multiline.typ-0.snap │ │ ├── list-multiline.typ-120.snap │ │ ├── list-multiline.typ-40.snap │ │ ├── list-multiline.typ-80.snap │ │ ├── list.typ-0.snap │ │ ├── list.typ-120.snap │ │ ├── list.typ-40.snap │ │ ├── list.typ-80.snap │ │ ├── multi-tick-raw.typ-0.snap │ │ ├── multi-tick-raw.typ-120.snap │ │ ├── multi-tick-raw.typ-40.snap │ │ ├── multi-tick-raw.typ-80.snap │ │ ├── parbreak-multiline.typ-0.snap │ │ ├── parbreak-multiline.typ-120.snap │ │ ├── parbreak-multiline.typ-40.snap │ │ ├── parbreak-multiline.typ-80.snap │ │ ├── raw-backtick.typ-0.snap │ │ ├── raw-backtick.typ-120.snap │ │ ├── raw-backtick.typ-40.snap │ │ ├── raw-backtick.typ-80.snap │ │ ├── raw-in-funccall.typ-0.snap │ │ ├── raw-in-funccall.typ-120.snap │ │ ├── raw-in-funccall.typ-40.snap │ │ ├── raw-in-funccall.typ-80.snap │ │ ├── raw.typ-0.snap │ │ ├── raw.typ-120.snap │ │ ├── raw.typ-40.snap │ │ ├── raw.typ-80.snap │ │ ├── shebang.typ-0.snap │ │ ├── shebang.typ-120.snap │ │ ├── shebang.typ-40.snap │ │ ├── shebang.typ-80.snap │ │ ├── spaces-collapse.typ-0.snap │ │ ├── spaces-collapse.typ-120.snap │ │ ├── spaces-collapse.typ-40.snap │ │ ├── spaces-collapse.typ-80.snap │ │ ├── spaces.typ-0.snap │ │ ├── spaces.typ-120.snap │ │ ├── spaces.typ-40.snap │ │ ├── spaces.typ-80.snap │ │ ├── spaces2-collapse.typ-0.snap │ │ ├── spaces2-collapse.typ-120.snap │ │ ├── spaces2-collapse.typ-40.snap │ │ ├── spaces2-collapse.typ-80.snap │ │ ├── spaces2-reflow.typ-0.snap │ │ ├── spaces2-reflow.typ-120.snap │ │ ├── spaces2-reflow.typ-40.snap │ │ ├── spaces2-reflow.typ-80.snap │ │ ├── spaces2.typ-0.snap │ │ ├── spaces2.typ-120.snap │ │ ├── spaces2.typ-40.snap │ │ ├── spaces2.typ-80.snap │ │ ├── strong-multiline.typ-0.snap │ │ ├── strong-multiline.typ-120.snap │ │ ├── strong-multiline.typ-40.snap │ │ ├── strong-multiline.typ-80.snap │ │ ├── strong-space.typ-0.snap │ │ ├── strong-space.typ-120.snap │ │ ├── strong-space.typ-40.snap │ │ ├── strong-space.typ-80.snap │ │ ├── term-empty.typ-0.snap │ │ ├── term-empty.typ-120.snap │ │ ├── term-empty.typ-40.snap │ │ ├── term-empty.typ-80.snap │ │ ├── term-indent-ex.typ-0.snap │ │ ├── term-indent-ex.typ-120.snap │ │ ├── term-indent-ex.typ-40.snap │ │ ├── term-indent-ex.typ-80.snap │ │ ├── term-indent.typ-0.snap │ │ ├── term-indent.typ-120.snap │ │ ├── term-indent.typ-40.snap │ │ ├── term-indent.typ-80.snap │ │ ├── term-multiline.typ-0.snap │ │ ├── term-multiline.typ-120.snap │ │ ├── term-multiline.typ-40.snap │ │ └── term-multiline.typ-80.snap │ ├── spaces-collapse.typ │ ├── spaces.typ │ ├── spaces2-collapse.typ │ ├── spaces2-reflow.typ │ ├── spaces2.typ │ ├── strong-multiline.typ │ ├── strong-space.typ │ ├── term-empty.typ │ ├── term-indent-ex.typ │ ├── term-indent.typ │ └── term-multiline.typ │ ├── math │ ├── aligned │ │ ├── commented.typ │ │ ├── delimited.typ │ │ ├── empty.typ │ │ ├── general.typ │ │ ├── impression.typ │ │ ├── inline.typ │ │ ├── multiline-str.typ │ │ ├── multiline.typ │ │ ├── nested.typ │ │ ├── snap │ │ │ ├── commented.typ-0.snap │ │ │ ├── commented.typ-120.snap │ │ │ ├── commented.typ-40.snap │ │ │ ├── commented.typ-80.snap │ │ │ ├── delimited.typ-0.snap │ │ │ ├── delimited.typ-120.snap │ │ │ ├── delimited.typ-40.snap │ │ │ ├── delimited.typ-80.snap │ │ │ ├── empty.typ-0.snap │ │ │ ├── empty.typ-120.snap │ │ │ ├── empty.typ-40.snap │ │ │ ├── empty.typ-80.snap │ │ │ ├── general.typ-0.snap │ │ │ ├── general.typ-120.snap │ │ │ ├── general.typ-40.snap │ │ │ ├── general.typ-80.snap │ │ │ ├── impression.typ-0.snap │ │ │ ├── impression.typ-120.snap │ │ │ ├── impression.typ-40.snap │ │ │ ├── impression.typ-80.snap │ │ │ ├── inline.typ-0.snap │ │ │ ├── inline.typ-120.snap │ │ │ ├── inline.typ-40.snap │ │ │ ├── inline.typ-80.snap │ │ │ ├── multiline-str.typ-0.snap │ │ │ ├── multiline-str.typ-120.snap │ │ │ ├── multiline-str.typ-40.snap │ │ │ ├── multiline-str.typ-80.snap │ │ │ ├── multiline.typ-0.snap │ │ │ ├── multiline.typ-120.snap │ │ │ ├── multiline.typ-40.snap │ │ │ ├── multiline.typ-80.snap │ │ │ ├── nested.typ-0.snap │ │ │ ├── nested.typ-120.snap │ │ │ ├── nested.typ-40.snap │ │ │ ├── nested.typ-80.snap │ │ │ ├── unicode.typ-0.snap │ │ │ ├── unicode.typ-120.snap │ │ │ ├── unicode.typ-40.snap │ │ │ └── unicode.typ-80.snap │ │ └── unicode.typ │ ├── args-long.typ │ ├── args-sep-nested.typ │ ├── args-sep.typ │ ├── args.typ │ ├── attach-hash.typ │ ├── attach.typ │ ├── brace-space.typ │ ├── call-chain.typ │ ├── complex-math.typ │ ├── delimited.typ │ ├── equation-flavor.typ │ ├── frac.typ │ ├── hashes.typ │ ├── huge.typ │ ├── let.typ │ ├── linebreak.typ │ ├── long.typ │ ├── multi-char-var.typ │ ├── multiline-inline-math.typ │ ├── multiline-math.typ │ ├── primes.typ │ ├── shorthand.typ │ ├── snap │ │ ├── args-long.typ-0.snap │ │ ├── args-long.typ-120.snap │ │ ├── args-long.typ-40.snap │ │ ├── args-long.typ-80.snap │ │ ├── args-sep-nested.typ-0.snap │ │ ├── args-sep-nested.typ-120.snap │ │ ├── args-sep-nested.typ-40.snap │ │ ├── args-sep-nested.typ-80.snap │ │ ├── args-sep.typ-0.snap │ │ ├── args-sep.typ-120.snap │ │ ├── args-sep.typ-40.snap │ │ ├── args-sep.typ-80.snap │ │ ├── args.typ-0.snap │ │ ├── args.typ-120.snap │ │ ├── args.typ-40.snap │ │ ├── args.typ-80.snap │ │ ├── attach-hash.typ-0.snap │ │ ├── attach-hash.typ-120.snap │ │ ├── attach-hash.typ-40.snap │ │ ├── attach-hash.typ-80.snap │ │ ├── attach.typ-0.snap │ │ ├── attach.typ-120.snap │ │ ├── attach.typ-40.snap │ │ ├── attach.typ-80.snap │ │ ├── brace-space.typ-0.snap │ │ ├── brace-space.typ-120.snap │ │ ├── brace-space.typ-40.snap │ │ ├── brace-space.typ-80.snap │ │ ├── call-chain.typ-0.snap │ │ ├── call-chain.typ-120.snap │ │ ├── call-chain.typ-40.snap │ │ ├── call-chain.typ-80.snap │ │ ├── complex-math.typ-0.snap │ │ ├── complex-math.typ-120.snap │ │ ├── complex-math.typ-40.snap │ │ ├── complex-math.typ-80.snap │ │ ├── delimited.typ-0.snap │ │ ├── delimited.typ-120.snap │ │ ├── delimited.typ-40.snap │ │ ├── delimited.typ-80.snap │ │ ├── equation-flavor.typ-0.snap │ │ ├── equation-flavor.typ-120.snap │ │ ├── equation-flavor.typ-40.snap │ │ ├── equation-flavor.typ-80.snap │ │ ├── frac.typ-0.snap │ │ ├── frac.typ-120.snap │ │ ├── frac.typ-40.snap │ │ ├── frac.typ-80.snap │ │ ├── hashes.typ-0.snap │ │ ├── hashes.typ-120.snap │ │ ├── hashes.typ-40.snap │ │ ├── hashes.typ-80.snap │ │ ├── huge.typ-0.snap │ │ ├── huge.typ-120.snap │ │ ├── huge.typ-40.snap │ │ ├── huge.typ-80.snap │ │ ├── let.typ-0.snap │ │ ├── let.typ-120.snap │ │ ├── let.typ-40.snap │ │ ├── let.typ-80.snap │ │ ├── linebreak.typ-0.snap │ │ ├── linebreak.typ-120.snap │ │ ├── linebreak.typ-40.snap │ │ ├── linebreak.typ-80.snap │ │ ├── long.typ-0.snap │ │ ├── long.typ-120.snap │ │ ├── long.typ-40.snap │ │ ├── long.typ-80.snap │ │ ├── multi-char-var.typ-0.snap │ │ ├── multi-char-var.typ-120.snap │ │ ├── multi-char-var.typ-40.snap │ │ ├── multi-char-var.typ-80.snap │ │ ├── multiline-inline-math.typ-0.snap │ │ ├── multiline-inline-math.typ-120.snap │ │ ├── multiline-inline-math.typ-40.snap │ │ ├── multiline-inline-math.typ-80.snap │ │ ├── multiline-math.typ-0.snap │ │ ├── multiline-math.typ-120.snap │ │ ├── multiline-math.typ-40.snap │ │ ├── multiline-math.typ-80.snap │ │ ├── primes.typ-0.snap │ │ ├── primes.typ-120.snap │ │ ├── primes.typ-40.snap │ │ ├── primes.typ-80.snap │ │ ├── shorthand.typ-0.snap │ │ ├── shorthand.typ-120.snap │ │ ├── shorthand.typ-40.snap │ │ ├── shorthand.typ-80.snap │ │ ├── space-in-fn-call.typ-0.snap │ │ ├── space-in-fn-call.typ-120.snap │ │ ├── space-in-fn-call.typ-40.snap │ │ ├── space-in-fn-call.typ-80.snap │ │ ├── sqrt.typ-0.snap │ │ ├── sqrt.typ-120.snap │ │ ├── sqrt.typ-40.snap │ │ ├── sqrt.typ-80.snap │ │ ├── var-in-math.typ-0.snap │ │ ├── var-in-math.typ-120.snap │ │ ├── var-in-math.typ-40.snap │ │ └── var-in-math.typ-80.snap │ ├── space-in-fn-call.typ │ ├── sqrt.typ │ └── var-in-math.typ │ ├── mixed │ ├── code-inside-content.typ │ ├── complex.typ │ ├── content-code.typ │ ├── func-in-par.typ │ ├── snap │ │ ├── code-inside-content.typ-0.snap │ │ ├── code-inside-content.typ-120.snap │ │ ├── code-inside-content.typ-40.snap │ │ ├── code-inside-content.typ-80.snap │ │ ├── complex.typ-0.snap │ │ ├── complex.typ-120.snap │ │ ├── complex.typ-40.snap │ │ ├── complex.typ-80.snap │ │ ├── content-code.typ-0.snap │ │ ├── content-code.typ-120.snap │ │ ├── content-code.typ-40.snap │ │ ├── content-code.typ-80.snap │ │ ├── func-in-par.typ-0.snap │ │ ├── func-in-par.typ-120.snap │ │ ├── func-in-par.typ-40.snap │ │ ├── func-in-par.typ-80.snap │ │ ├── strong.typ-0.snap │ │ ├── strong.typ-120.snap │ │ ├── strong.typ-40.snap │ │ └── strong.typ-80.snap │ └── strong.typ │ ├── off │ ├── after-hash.typ │ ├── block-single.typ │ ├── code-block.typ │ ├── complex.typ │ ├── content-func-call.typ │ ├── snap │ │ ├── after-hash.typ-0.snap │ │ ├── after-hash.typ-120.snap │ │ ├── after-hash.typ-40.snap │ │ ├── after-hash.typ-80.snap │ │ ├── block-single.typ-0.snap │ │ ├── block-single.typ-120.snap │ │ ├── block-single.typ-40.snap │ │ ├── block-single.typ-80.snap │ │ ├── code-block.typ-0.snap │ │ ├── code-block.typ-120.snap │ │ ├── code-block.typ-40.snap │ │ ├── code-block.typ-80.snap │ │ ├── complex.typ-0.snap │ │ ├── complex.typ-120.snap │ │ ├── complex.typ-40.snap │ │ ├── complex.typ-80.snap │ │ ├── content-func-call.typ-0.snap │ │ ├── content-func-call.typ-120.snap │ │ ├── content-func-call.typ-40.snap │ │ ├── content-func-call.typ-80.snap │ │ ├── through.typ-0.snap │ │ ├── through.typ-120.snap │ │ ├── through.typ-40.snap │ │ └── through.typ-80.snap │ └── through.typ │ └── table │ ├── array.typ │ ├── basic-cmt.typ │ ├── basic.typ │ ├── cell-ugly.typ │ ├── cell.typ │ ├── colspan.typ │ ├── columns.typ │ ├── complex.typ │ ├── dense.typ │ ├── empty.typ │ ├── extra-arg.typ │ ├── header-footer.typ │ ├── large-cell.typ │ ├── off.typ │ ├── recognize.typ │ └── snap │ ├── array.typ-0.snap │ ├── array.typ-120.snap │ ├── array.typ-40.snap │ ├── array.typ-80.snap │ ├── basic-cmt.typ-0.snap │ ├── basic-cmt.typ-120.snap │ ├── basic-cmt.typ-40.snap │ ├── basic-cmt.typ-80.snap │ ├── basic.typ-0.snap │ ├── basic.typ-120.snap │ ├── basic.typ-40.snap │ ├── basic.typ-80.snap │ ├── cell-ugly.typ-0.snap │ ├── cell-ugly.typ-120.snap │ ├── cell-ugly.typ-40.snap │ ├── cell-ugly.typ-80.snap │ ├── cell.typ-0.snap │ ├── cell.typ-120.snap │ ├── cell.typ-40.snap │ ├── cell.typ-80.snap │ ├── colspan.typ-0.snap │ ├── colspan.typ-120.snap │ ├── colspan.typ-40.snap │ ├── colspan.typ-80.snap │ ├── columns.typ-0.snap │ ├── columns.typ-120.snap │ ├── columns.typ-40.snap │ ├── columns.typ-80.snap │ ├── complex.typ-0.snap │ ├── complex.typ-120.snap │ ├── complex.typ-40.snap │ ├── complex.typ-80.snap │ ├── dense.typ-0.snap │ ├── dense.typ-120.snap │ ├── dense.typ-40.snap │ ├── dense.typ-80.snap │ ├── empty.typ-0.snap │ ├── empty.typ-120.snap │ ├── empty.typ-40.snap │ ├── empty.typ-80.snap │ ├── extra-arg.typ-0.snap │ ├── extra-arg.typ-120.snap │ ├── extra-arg.typ-40.snap │ ├── extra-arg.typ-80.snap │ ├── header-footer.typ-0.snap │ ├── header-footer.typ-120.snap │ ├── header-footer.typ-40.snap │ ├── header-footer.typ-80.snap │ ├── large-cell.typ-0.snap │ ├── large-cell.typ-120.snap │ ├── large-cell.typ-40.snap │ ├── large-cell.typ-80.snap │ ├── off.typ-0.snap │ ├── off.typ-120.snap │ ├── off.typ-40.snap │ ├── off.typ-80.snap │ ├── recognize.typ-0.snap │ ├── recognize.typ-120.snap │ ├── recognize.typ-40.snap │ └── recognize.typ-80.snap └── src ├── common.rs ├── common └── directive.rs ├── partial.rs ├── repo-e2e.rs ├── tests.rs └── unit.rs /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/generate-benchmark-report.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/scripts/generate-benchmark-report.nu -------------------------------------------------------------------------------- /.github/workflows/bench-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/bench-comment.yml -------------------------------------------------------------------------------- /.github/workflows/bench-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/bench-job.yml -------------------------------------------------------------------------------- /.github/workflows/bench-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/bench-pr.yml -------------------------------------------------------------------------------- /.github/workflows/bench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/bench.yml -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/build-playground.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/build-playground.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/publish-crates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/publish-crates.yml -------------------------------------------------------------------------------- /.github/workflows/publish-wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/publish-wasm.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | *.log 3 | 4 | /github-pages 5 | .claude 6 | -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/README.md -------------------------------------------------------------------------------- /contrib/typstyle-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/contrib/typstyle-embedded/README.md -------------------------------------------------------------------------------- /contrib/typstyle-embedded/assets/.gitignore: -------------------------------------------------------------------------------- 1 | *.wasm 2 | -------------------------------------------------------------------------------- /contrib/typstyle-embedded/src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/contrib/typstyle-embedded/src/lib.typ -------------------------------------------------------------------------------- /contrib/typstyle-embedded/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/contrib/typstyle-embedded/typst.toml -------------------------------------------------------------------------------- /crates/typstyle-consistency/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-consistency/Cargo.toml -------------------------------------------------------------------------------- /crates/typstyle-consistency/src/cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-consistency/src/cmp.rs -------------------------------------------------------------------------------- /crates/typstyle-consistency/src/err.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-consistency/src/err.rs -------------------------------------------------------------------------------- /crates/typstyle-consistency/src/harness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-consistency/src/harness.rs -------------------------------------------------------------------------------- /crates/typstyle-consistency/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-consistency/src/lib.rs -------------------------------------------------------------------------------- /crates/typstyle-consistency/src/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-consistency/src/world.rs -------------------------------------------------------------------------------- /crates/typstyle-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/Cargo.toml -------------------------------------------------------------------------------- /crates/typstyle-core/benches/pretty_print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/benches/pretty_print.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/attr.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/config.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/ext.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/lib.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/liteval/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/liteval/mod.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/partial.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/args.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/code_chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/code_chain.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/code_flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/code_flow.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/code_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/code_list.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/code_misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/code_misc.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/comment.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/context.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/func_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/func_call.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/import.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/layout/chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/layout/chain.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/layout/flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/layout/flow.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/layout/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/layout/list.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/layout/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/layout/mod.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/layout/plain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/layout/plain.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/layout/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/layout/table.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/markup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/markup.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/math.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/math_align.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/math_align.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/mod.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/parened_expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/parened_expr.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/prelude.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/style.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/table.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/text.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/pretty/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/pretty/util.rs -------------------------------------------------------------------------------- /crates/typstyle-core/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-core/src/utils.rs -------------------------------------------------------------------------------- /crates/typstyle-typlugin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-typlugin/Cargo.toml -------------------------------------------------------------------------------- /crates/typstyle-typlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-typlugin/README.md -------------------------------------------------------------------------------- /crates/typstyle-typlugin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-typlugin/src/lib.rs -------------------------------------------------------------------------------- /crates/typstyle-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-wasm/Cargo.toml -------------------------------------------------------------------------------- /crates/typstyle-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-wasm/README.md -------------------------------------------------------------------------------- /crates/typstyle-wasm/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-wasm/build.rs -------------------------------------------------------------------------------- /crates/typstyle-wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle-wasm/src/lib.rs -------------------------------------------------------------------------------- /crates/typstyle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/Cargo.toml -------------------------------------------------------------------------------- /crates/typstyle/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/build.rs -------------------------------------------------------------------------------- /crates/typstyle/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/src/cli.rs -------------------------------------------------------------------------------- /crates/typstyle/src/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/src/diff.rs -------------------------------------------------------------------------------- /crates/typstyle/src/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/src/fmt.rs -------------------------------------------------------------------------------- /crates/typstyle/src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/src/fs.rs -------------------------------------------------------------------------------- /crates/typstyle/src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/src/logging.rs -------------------------------------------------------------------------------- /crates/typstyle/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/src/main.rs -------------------------------------------------------------------------------- /crates/typstyle/tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/tests/common.rs -------------------------------------------------------------------------------- /crates/typstyle/tests/test_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/tests/test_format.rs -------------------------------------------------------------------------------- /crates/typstyle/tests/test_format_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/tests/test_format_all.rs -------------------------------------------------------------------------------- /crates/typstyle/tests/test_format_stdin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/tests/test_format_stdin.rs -------------------------------------------------------------------------------- /crates/typstyle/tests/test_style_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/crates/typstyle/tests/test_style_args.rs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /docs/assets/generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docs/book.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/book.typ -------------------------------------------------------------------------------- /docs/deps.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/deps.typ -------------------------------------------------------------------------------- /docs/ebook.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/ebook.typ -------------------------------------------------------------------------------- /docs/pages/architecture.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/architecture.typ -------------------------------------------------------------------------------- /docs/pages/book.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/book.typ -------------------------------------------------------------------------------- /docs/pages/changelog.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/changelog.typ -------------------------------------------------------------------------------- /docs/pages/cli-usage.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/cli-usage.typ -------------------------------------------------------------------------------- /docs/pages/dev-guide.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/dev-guide.typ -------------------------------------------------------------------------------- /docs/pages/dev-guide/core.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/dev-guide/core.typ -------------------------------------------------------------------------------- /docs/pages/dev-guide/documentation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/dev-guide/documentation.typ -------------------------------------------------------------------------------- /docs/pages/dev-guide/playground.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/dev-guide/playground.typ -------------------------------------------------------------------------------- /docs/pages/dev-guide/release-process.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/dev-guide/release-process.typ -------------------------------------------------------------------------------- /docs/pages/escape-hatch.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/escape-hatch.typ -------------------------------------------------------------------------------- /docs/pages/features.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/features.typ -------------------------------------------------------------------------------- /docs/pages/features/code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/features/code.typ -------------------------------------------------------------------------------- /docs/pages/features/markup.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/features/markup.typ -------------------------------------------------------------------------------- /docs/pages/features/math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/features/math.typ -------------------------------------------------------------------------------- /docs/pages/features/table.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/features/table.typ -------------------------------------------------------------------------------- /docs/pages/installation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/installation.typ -------------------------------------------------------------------------------- /docs/pages/introduction.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/introduction.typ -------------------------------------------------------------------------------- /docs/pages/limitations.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/limitations.typ -------------------------------------------------------------------------------- /docs/pages/quick-start.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/pages/quick-start.typ -------------------------------------------------------------------------------- /docs/templates/components/callout.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/components/callout.typ -------------------------------------------------------------------------------- /docs/templates/components/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/components/example.typ -------------------------------------------------------------------------------- /docs/templates/components/mod.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/components/mod.typ -------------------------------------------------------------------------------- /docs/templates/constants.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/constants.typ -------------------------------------------------------------------------------- /docs/templates/ebook.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/ebook.typ -------------------------------------------------------------------------------- /docs/templates/metadata.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/metadata.typ -------------------------------------------------------------------------------- /docs/templates/page.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/page.typ -------------------------------------------------------------------------------- /docs/templates/rules.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/rules.typ -------------------------------------------------------------------------------- /docs/templates/scripts/copy-to-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/scripts/copy-to-clipboard.js -------------------------------------------------------------------------------- /docs/templates/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/styles/base.css -------------------------------------------------------------------------------- /docs/templates/styles/callout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/styles/callout.css -------------------------------------------------------------------------------- /docs/templates/styles/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/styles/example.css -------------------------------------------------------------------------------- /docs/templates/styles/hypraw-copy-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/styles/hypraw-copy-button.css -------------------------------------------------------------------------------- /docs/templates/styles/hypraw-line-numbers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/styles/hypraw-line-numbers.css -------------------------------------------------------------------------------- /docs/templates/styles/hypraw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/styles/hypraw.css -------------------------------------------------------------------------------- /docs/templates/theme-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/theme-style.toml -------------------------------------------------------------------------------- /docs/templates/tokyo-night.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/tokyo-night.tmTheme -------------------------------------------------------------------------------- /docs/templates/version.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/docs/templates/version.typ -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/justfile -------------------------------------------------------------------------------- /overrides/partials/integrations/analytics/cf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/overrides/partials/integrations/analytics/cf.html -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/.prettierrc -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/biome.jsonc -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/pnpm-lock.yaml -------------------------------------------------------------------------------- /playground/public/typst.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/public/typst.tmLanguage.json -------------------------------------------------------------------------------- /playground/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/App.tsx -------------------------------------------------------------------------------- /playground/src/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/Playground.tsx -------------------------------------------------------------------------------- /playground/src/assets/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/assets/language-configuration.json -------------------------------------------------------------------------------- /playground/src/assets/sample-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/assets/sample-manifest.json -------------------------------------------------------------------------------- /playground/src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /playground/src/components/FloatingErrorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/FloatingErrorCard.tsx -------------------------------------------------------------------------------- /playground/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/Header.tsx -------------------------------------------------------------------------------- /playground/src/components/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/MainLayout.tsx -------------------------------------------------------------------------------- /playground/src/components/editor/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/editor/CodeEditor.tsx -------------------------------------------------------------------------------- /playground/src/components/editor/OutputEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/editor/OutputEditor.tsx -------------------------------------------------------------------------------- /playground/src/components/editor/SourceEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/editor/SourceEditor.tsx -------------------------------------------------------------------------------- /playground/src/components/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/editor/index.ts -------------------------------------------------------------------------------- /playground/src/components/forms/RangeControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/forms/RangeControls.tsx -------------------------------------------------------------------------------- /playground/src/components/forms/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/forms/SettingsPanel.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/Icons.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/LoadingSpinner.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/ShareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/ShareModal.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/StatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/StatusBar.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/Tabs.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/Toast.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/ToastContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/ToastContainer.tsx -------------------------------------------------------------------------------- /playground/src/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/components/ui/index.ts -------------------------------------------------------------------------------- /playground/src/config/monaco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/config/monaco.ts -------------------------------------------------------------------------------- /playground/src/config/typst-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/config/typst-language.ts -------------------------------------------------------------------------------- /playground/src/contexts/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/contexts/ThemeProvider.tsx -------------------------------------------------------------------------------- /playground/src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/contexts/index.ts -------------------------------------------------------------------------------- /playground/src/contexts/theme-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/contexts/theme-context.ts -------------------------------------------------------------------------------- /playground/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/index.ts -------------------------------------------------------------------------------- /playground/src/hooks/use-editor-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/use-editor-selection.ts -------------------------------------------------------------------------------- /playground/src/hooks/use-playground-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/use-playground-state.ts -------------------------------------------------------------------------------- /playground/src/hooks/use-screen-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/use-screen-size.ts -------------------------------------------------------------------------------- /playground/src/hooks/use-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/use-theme.ts -------------------------------------------------------------------------------- /playground/src/hooks/use-typst-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/use-typst-formatter.ts -------------------------------------------------------------------------------- /playground/src/hooks/useErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/useErrorHandler.ts -------------------------------------------------------------------------------- /playground/src/hooks/useShareManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/useShareManager.ts -------------------------------------------------------------------------------- /playground/src/hooks/useToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/hooks/useToast.ts -------------------------------------------------------------------------------- /playground/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/main.tsx -------------------------------------------------------------------------------- /playground/src/monaco/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/monaco/index.ts -------------------------------------------------------------------------------- /playground/src/monaco/language-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/monaco/language-registry.ts -------------------------------------------------------------------------------- /playground/src/monaco/textmate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/monaco/textmate.ts -------------------------------------------------------------------------------- /playground/src/monaco/theme-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/monaco/theme-registry.ts -------------------------------------------------------------------------------- /playground/src/monaco/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/monaco/types.ts -------------------------------------------------------------------------------- /playground/src/styles/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/styles/components.css -------------------------------------------------------------------------------- /playground/src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/styles/index.css -------------------------------------------------------------------------------- /playground/src/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/styles/theme.css -------------------------------------------------------------------------------- /playground/src/test/integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/test/integration.test.tsx -------------------------------------------------------------------------------- /playground/src/test/wasm-binding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/test/wasm-binding.test.ts -------------------------------------------------------------------------------- /playground/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/types.ts -------------------------------------------------------------------------------- /playground/src/utils/editor-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/utils/editor-selection.ts -------------------------------------------------------------------------------- /playground/src/utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/utils/formatter.ts -------------------------------------------------------------------------------- /playground/src/utils/global-error-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/utils/global-error-handlers.ts -------------------------------------------------------------------------------- /playground/src/utils/pastebin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/utils/pastebin.ts -------------------------------------------------------------------------------- /playground/src/utils/sample-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/utils/sample-loader.ts -------------------------------------------------------------------------------- /playground/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/src/utils/url.ts -------------------------------------------------------------------------------- /playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /playground/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/tsconfig.app.json -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/tsconfig.node.json -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /scripts/generate-imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/scripts/generate-imports.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | e2e/ 2 | -------------------------------------------------------------------------------- /tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/Cargo.toml -------------------------------------------------------------------------------- /tests/fixtures/ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/README.md -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/academic.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/academic.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/basic.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/basic.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/cookbook.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/cookbook.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/mathematics.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/mathematics.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/presentation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/presentation.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/academic.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/academic.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/academic.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/academic.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/academic.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/academic.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/academic.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/academic.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/basic.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/basic.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/basic.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/basic.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/basic.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/basic.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/basic.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/basic.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/cookbook.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/cookbook.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/cookbook.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/cookbook.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/cookbook.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/cookbook.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/cookbook.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/cookbook.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/mathematics.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/mathematics.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/mathematics.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/mathematics.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/mathematics.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/mathematics.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/mathematics.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/mathematics.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/presentation.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/presentation.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/presentation.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/presentation.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/presentation.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/presentation.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/technical.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/technical.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/technical.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/technical.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/technical.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/technical.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/snap/technical.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/snap/technical.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/basic/technical.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/basic/technical.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat-ugly/code-blocks.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat-ugly/code-blocks.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat-ugly/comment-formatting.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat-ugly/comment-formatting.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat-ugly/function-calls.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat-ugly/function-calls.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat-ugly/table-formatting.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat-ugly/table-formatting.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/advanced-functions.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/advanced-functions.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/argument-patterns.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/argument-patterns.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/comments-code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/comments-code.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/comprehensive-showcase.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/comprehensive-showcase.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/data-processing.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/data-processing.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/data-structures.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/data-structures.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/math-expressions.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/math-expressions.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/mixed-content.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/mixed-content.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/mixed-markup.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/mixed-markup.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/comments-code.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/comments-code.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/comments-code.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/comments-code.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/comments-code.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/comments-code.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-content.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-content.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-content.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-content.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-content.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-content.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-markup.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-markup.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-markup.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-markup.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-markup.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-markup.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/mixed-markup.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/mixed-markup.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/snap/table-showcase.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/snap/table-showcase.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/feat/table-showcase.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/feat/table-showcase.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/show/primes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/primes.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/show/snap/primes.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/snap/primes.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/show/snap/primes.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/snap/primes.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/show/snap/primes.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/snap/primes.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/show/snap/primes.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/snap/primes.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/ai/show/version-history-1.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/version-history-1.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/show/version-history-2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/version-history-2.typ -------------------------------------------------------------------------------- /tests/fixtures/ai/show/version-history-3.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/ai/show/version-history-3.typ -------------------------------------------------------------------------------- /tests/fixtures/articles/_cpe.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/_cpe.typ -------------------------------------------------------------------------------- /tests/fixtures/articles/book.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/book.typ -------------------------------------------------------------------------------- /tests/fixtures/articles/physics-experiment.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/physics-experiment.typ -------------------------------------------------------------------------------- /tests/fixtures/articles/serve.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/serve.typ -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/book.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/book.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/book.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/book.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/book.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/book.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/book.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/book.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/serve.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/serve.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/serve.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/serve.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/serve.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/serve.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/snap/serve.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/snap/serve.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/articles/undergraduate-math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/articles/undergraduate-math.typ -------------------------------------------------------------------------------- /tests/fixtures/e2e-repos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/e2e-repos.toml -------------------------------------------------------------------------------- /tests/fixtures/packages/cetz-manual.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/cetz-manual.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/cetz-tree.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/cetz-tree.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/codly.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/codly.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/cuti.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/cuti.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/fletcher-diagram.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/fletcher-diagram.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/fletcher-draw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/fletcher-draw.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/indenta.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/indenta.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/quill-gallery.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/quill-gallery.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/simple-paper.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/simple-paper.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-manual.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-manual.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-manual.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-manual.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-manual.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-manual.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-manual.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-manual.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-tree.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-tree.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-tree.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-tree.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-tree.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-tree.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cetz-tree.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cetz-tree.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/codly.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/codly.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/codly.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/codly.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/codly.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/codly.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/codly.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/codly.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cuti.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cuti.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cuti.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cuti.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cuti.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cuti.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/cuti.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/cuti.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/fletcher-draw.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/fletcher-draw.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/indenta.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/indenta.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/indenta.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/indenta.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/indenta.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/indenta.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/indenta.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/indenta.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/quill-gallery.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/quill-gallery.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/simple-paper.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/simple-paper.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/simple-paper.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/simple-paper.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/simple-paper.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/simple-paper.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/tablex.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/tablex.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/tablex.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/tablex.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/tablex.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/tablex.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/snap/tablex.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/snap/tablex.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/tablex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/tablex.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/tidy-new-parser.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/tidy-new-parser.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/touying/core.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/touying/core.typ -------------------------------------------------------------------------------- /tests/fixtures/packages/touying/snap/core.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/touying/snap/core.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/touying/snap/core.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/touying/snap/core.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/touying/snap/core.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/touying/snap/core.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/touying/snap/utils.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/touying/snap/utils.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/packages/touying/utils.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/packages/touying/utils.typ -------------------------------------------------------------------------------- /tests/fixtures/partial/erroneous.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/erroneous.typ -------------------------------------------------------------------------------- /tests/fixtures/partial/indenta.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/indenta.typ -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/erroneous.typ-17_20.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/erroneous.typ-17_20.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/erroneous.typ-25_30.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/erroneous.typ-25_30.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/erroneous.typ-36_40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/erroneous.typ-36_40.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/erroneous.typ-53_56.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/erroneous.typ-53_56.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/erroneous.typ-5_10.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/erroneous.typ-5_10.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/indenta.typ-200_300.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/indenta.typ-200_300.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/indenta.typ-387_713.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/indenta.typ-387_713.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/indenta.typ-80_85.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/indenta.typ-80_85.snap -------------------------------------------------------------------------------- /tests/fixtures/partial/snap/indenta.typ-867_869.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/partial/snap/indenta.typ-867_869.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/100-email.typ: -------------------------------------------------------------------------------- 1 | user\@host.TLD 2 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/102-non-converge-math-mat.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/102-non-converge-math-mat.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/113-math-indent.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/113-math-indent.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/124-block-comment.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/124-block-comment.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/136-raw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/136-raw.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/137-math-align-panic.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/137-math-align-panic.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/138-non-converge-block-comment.typ: -------------------------------------------------------------------------------- 1 | #let test_func() = { 2 | ( 3 | /* 4 | test 5 | */ 6 | ) 7 | } 8 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/139-block-comment.typ: -------------------------------------------------------------------------------- 1 | #let test_func() = { 2 | /* 3 | test 4 | */ 5 | } 6 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/148-broken-input.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/148-broken-input.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/160-fletcher.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/160-fletcher.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/80-func-call-with-label.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/80-func-call-with-label.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/82-non-converge-list.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/82-non-converge-list.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/84-ws-text-code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/84-ws-text-code.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/85-ws-quote.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/85-ws-quote.typ -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/88-markup-hardline.typ: -------------------------------------------------------------------------------- 1 | →#[\ ]← 2 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/93-math-stop.typ: -------------------------------------------------------------------------------- 1 | $$. 2 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/95-space-before-math.typ: -------------------------------------------------------------------------------- 1 | aaa $a$ 2 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/96-destruct-comma.typ: -------------------------------------------------------------------------------- 1 | #let (a, b) = (1, 2) 2 | -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/100-email.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/100-email.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/100-email.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/100-email.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/100-email.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/100-email.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/100-email.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/100-email.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/136-raw.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/136-raw.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/136-raw.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/136-raw.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/136-raw.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/136-raw.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/136-raw.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/136-raw.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/160-fletcher.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/160-fletcher.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/160-fletcher.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/160-fletcher.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/160-fletcher.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/160-fletcher.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/85-ws-quote.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/85-ws-quote.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/85-ws-quote.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/85-ws-quote.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/85-ws-quote.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/85-ws-quote.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/85-ws-quote.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/85-ws-quote.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/93-math-stop.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/93-math-stop.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/93-math-stop.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/93-math-stop.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/typstfmt/snap/93-math-stop.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/typstfmt/snap/93-math-stop.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/compact-complex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/compact-complex.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/compact-simple.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/compact-simple.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/flavor.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/flavor.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/last-arg.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/last-arg.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/simple.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/simple.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/flavor.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/flavor.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/flavor.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/flavor.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/flavor.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/flavor.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/simple.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/simple.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/simple.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/simple.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/simple.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/simple.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/snap/tight.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/snap/tight.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/spread.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/spread.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/tight.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/tight.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/args/with-newline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/args/with-newline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/array-flavor.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/array-flavor.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/array.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/array.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/block-short.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/block-short.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/chain/binary-0.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/chain/binary-0.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/chain/binary.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/chain/binary.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/chain/call-compileable.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/chain/call-compileable.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/chain/call-last-indent.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/chain/call-last-indent.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/chain/call.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/chain/call.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/chain/snap/call.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/chain/snap/call.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/closure-simple.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/closure-simple.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/closure-single-arg.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/closure-single-arg.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/cond.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/cond.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/context.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/context.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/destruct-single-elem.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/destruct-single-elem.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/destruction.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/destruction.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/dict-flavor.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/dict-flavor.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/dict-special.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/dict-special.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/dot-chain.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/dot-chain.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/equation-dot-chain.typ: -------------------------------------------------------------------------------- 1 | #let a = $a^b$.body.has("t") 2 | #a 3 | -------------------------------------------------------------------------------- /tests/fixtures/unit/code/for-loop-line-break.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/for-loop-line-break.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/func_call_multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/func_call_multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/if-chain.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/if-chain.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/if-short.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/if-short.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/if-while-else.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/if-while-else.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/import-items.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/import-items.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/import-reorder.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/import-reorder.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/import.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/import.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/include.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/include.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/let-closure.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/let-closure.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/param-len.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/param-len.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/params-flavor.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/params-flavor.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/paren-extra.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/paren-extra.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/paren-in-key.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/paren-in-key.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/perf-nest.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/perf-nest.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/set-if.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/set-if.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/set-rule.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/set-rule.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/show-chain.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/show-chain.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/show-closure-1.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/show-closure-1.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/show-closure-paren.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/show-closure-paren.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/show-closure.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/show-closure.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/show-set.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/show-set.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/array.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/array.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/array.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/array.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/array.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/array.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/array.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/array.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/cond.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/cond.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/cond.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/cond.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/cond.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/cond.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/cond.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/cond.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/context.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/context.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/context.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/context.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/context.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/context.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/context.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/context.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/dot-chain.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/dot-chain.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/dot-chain.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/dot-chain.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/dot-chain.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/dot-chain.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-chain.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-chain.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-chain.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-chain.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-chain.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-chain.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-chain.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-chain.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-short.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-short.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-short.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-short.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-short.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-short.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/if-short.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/if-short.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/import.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/import.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/import.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/import.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/import.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/import.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/import.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/import.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/include.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/include.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/include.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/include.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/include.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/include.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/include.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/include.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/param-len.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/param-len.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/param-len.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/param-len.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/param-len.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/param-len.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/perf-nest.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/perf-nest.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/perf-nest.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/perf-nest.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/perf-nest.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/perf-nest.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-if.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-if.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-if.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-if.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-if.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-if.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-if.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-if.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-rule.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-rule.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-rule.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-rule.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-rule.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-rule.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/set-rule.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/set-rule.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/show-chain.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/show-chain.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/show-set.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/show-set.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/show-set.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/show-set.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/show-set.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/show-set.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/snap/show-set.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/snap/show-set.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/code/string-multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/code/string-multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/block-align.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/block-align.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/block.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/block.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/consecutive.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/consecutive.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/convergence.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/convergence.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-array.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-array.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-block-short.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-block-short.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-chain-binary.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-chain-binary.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-chain-call.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-chain-call.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-chain-standalone.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-chain-standalone.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-closure.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-closure.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-code.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-content.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-content.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-destruct.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-destruct.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-dict.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-dict.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-equation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-equation.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-for.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-for.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-func-call.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-func-call.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-if.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-if.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-import.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-import.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-include.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-include.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-markup.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-markup.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-math-args.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-math-args.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-math.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-params.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-params.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-showset.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-showset.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/in-while.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/in-while.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/line-attach.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/line-attach.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/line.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/line.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/block.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/block.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/block.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/block.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/block.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/block.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/block.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/block.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-code.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-code.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-dict.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-dict.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-for.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-for.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-for.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-for.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-for.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-for.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-if.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-if.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-if.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-if.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-if.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-if.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-if.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-if.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/in-math.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/in-math.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/line.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/line.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/line.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/line.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/line.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/line.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/comment/snap/line.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/comment/snap/line.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/document/empty-parbreak.typ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/fixtures/unit/document/empty-space.typ: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/unit/document/empty.typ: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/unit/document/snap/empty.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/document/snap/empty.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/document/snap/empty.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/document/snap/empty.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/document/snap/empty.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/document/snap/empty.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-00.typ: -------------------------------------------------------------------------------- 1 | /// This is a module 2 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-01.typ: -------------------------------------------------------------------------------- 1 | /// This is a module 2 | 3 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-10.typ: -------------------------------------------------------------------------------- 1 | /// This is a module 2 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-11.typ: -------------------------------------------------------------------------------- 1 | /// This is a module 2 | 3 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-20.typ: -------------------------------------------------------------------------------- 1 | 2 | /// This is a module 3 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-21.typ: -------------------------------------------------------------------------------- 1 | 2 | /// This is a module 3 | 4 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-30.typ: -------------------------------------------------------------------------------- 1 | 2 | 3 | /// This is a module 4 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment-31.typ: -------------------------------------------------------------------------------- 1 | 2 | 3 | /// This is a module 4 | 5 | Something else -------------------------------------------------------------------------------- /tests/fixtures/unit/document/top-comment.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/document/top-comment.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/content-compact.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/content-compact.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/content-compact2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/content-compact2.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/content-func.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/content-func.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/content-multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/content-multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/content-nest.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/content-nest.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/content.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/content.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/enum.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/enum.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/escape.typ: -------------------------------------------------------------------------------- 1 | I got an ice cream for 2 | \$1.50! \u{1f600} 3 | -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/heading-empty.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/heading-empty.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/heading.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/heading.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/indent-raw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/indent-raw.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/inline-block-raw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/inline-block-raw.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/linebreak.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/linebreak.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/list-indent-ex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/list-indent-ex.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/list-indent.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/list-indent.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/list-multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/list-multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/list.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/list.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/multi-tick-raw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/multi-tick-raw.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/parbreak-multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/parbreak-multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/raw-backtick.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/raw-backtick.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/raw-in-funccall.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/raw-in-funccall.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/raw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/raw.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/code.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/commented.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/commented.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/exclusive.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/exclusive.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/exclusive2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/exclusive2.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/general.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/general.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/linebreak.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/linebreak.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/marker.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/marker.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/nested.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/nested.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/spaces.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/spaces.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/reflow/unicode.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/reflow/unicode.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/shebang.typ: -------------------------------------------------------------------------------- 1 | #!typst compile 2 | We use a shebang 3 | -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/content.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/content.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/content.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/content.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/content.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/content.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/enum.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/enum.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/enum.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/enum.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/enum.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/enum.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/enum.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/enum.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/escape.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/escape.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/escape.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/escape.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/escape.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/escape.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/escape.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/escape.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/heading.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/heading.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/heading.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/heading.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/heading.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/heading.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/list.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/list.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/list.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/list.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/list.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/list.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/list.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/list.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/raw.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/raw.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/raw.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/raw.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/raw.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/raw.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/raw.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/raw.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/shebang.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/shebang.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/shebang.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/shebang.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/shebang.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/shebang.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces2.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces2.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces2.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces2.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/snap/spaces2.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/snap/spaces2.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/spaces-collapse.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/spaces-collapse.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/spaces.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/spaces.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/spaces2-collapse.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/spaces2-collapse.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/spaces2-reflow.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/spaces2-reflow.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/spaces2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/spaces2.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/strong-multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/strong-multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/strong-space.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/strong-space.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/term-empty.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/term-empty.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/term-indent-ex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/term-indent-ex.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/term-indent.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/term-indent.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/markup/term-multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/markup/term-multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/commented.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/commented.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/delimited.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/delimited.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/empty.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/empty.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/general.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/general.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/impression.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/impression.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/inline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/inline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/multiline-str.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/multiline-str.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/multiline.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/nested.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/nested.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/aligned/unicode.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/aligned/unicode.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/args-long.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/args-long.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/args-sep-nested.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/args-sep-nested.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/args-sep.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/args-sep.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/args.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/args.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/attach-hash.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/attach-hash.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/attach.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/attach.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/brace-space.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/brace-space.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/call-chain.typ: -------------------------------------------------------------------------------- 1 | $arrow.r.long.bar$ 2 | -------------------------------------------------------------------------------- /tests/fixtures/unit/math/complex-math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/complex-math.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/delimited.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/delimited.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/equation-flavor.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/equation-flavor.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/frac.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/frac.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/hashes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/hashes.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/huge.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/huge.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/let.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/let.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/linebreak.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/linebreak.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/long.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/long.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/multi-char-var.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/multi-char-var.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/multiline-inline-math.typ: -------------------------------------------------------------------------------- 1 | $a + b 2 | +d/e$ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/multiline-math.typ: -------------------------------------------------------------------------------- 1 | $ 2 | Re \ 3 | Im 4 | $ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/primes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/primes.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/shorthand.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/shorthand.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-long.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-long.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-long.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-long.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-long.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-long.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-sep.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-sep.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-sep.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-sep.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-sep.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-sep.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args-sep.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args-sep.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/args.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/args.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/attach.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/attach.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/attach.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/attach.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/attach.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/attach.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/attach.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/attach.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/call-chain.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/call-chain.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/delimited.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/delimited.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/delimited.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/delimited.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/delimited.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/delimited.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/frac.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/frac.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/frac.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/frac.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/frac.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/frac.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/frac.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/frac.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/hashes.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/hashes.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/hashes.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/hashes.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/hashes.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/hashes.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/hashes.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/hashes.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/huge.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/huge.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/huge.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/huge.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/huge.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/huge.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/huge.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/huge.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/let.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/let.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/let.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/let.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/let.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/let.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/let.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/let.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/linebreak.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/linebreak.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/linebreak.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/linebreak.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/linebreak.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/linebreak.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/long.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/long.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/long.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/long.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/long.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/long.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/long.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/long.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/primes.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/primes.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/primes.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/primes.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/primes.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/primes.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/primes.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/primes.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/shorthand.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/shorthand.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/shorthand.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/shorthand.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/shorthand.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/shorthand.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/sqrt.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/sqrt.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/sqrt.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/sqrt.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/sqrt.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/sqrt.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/snap/sqrt.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/snap/sqrt.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/math/space-in-fn-call.typ: -------------------------------------------------------------------------------- 1 | $sin( )$ 2 | -------------------------------------------------------------------------------- /tests/fixtures/unit/math/sqrt.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/sqrt.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/math/var-in-math.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/math/var-in-math.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/code-inside-content.typ: -------------------------------------------------------------------------------- 1 | #[#{ 2 | let something = 0; 3 | }\ ] 4 | -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/complex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/complex.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/content-code.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/content-code.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/func-in-par.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/func-in-par.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/complex.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/complex.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/complex.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/complex.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/complex.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/complex.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/complex.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/complex.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/strong.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/strong.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/strong.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/strong.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/strong.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/strong.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/snap/strong.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/snap/strong.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/mixed/strong.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/mixed/strong.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/off/after-hash.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/after-hash.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/off/block-single.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/block-single.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/off/code-block.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/code-block.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/off/complex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/complex.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/off/content-func-call.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/content-func-call.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/after-hash.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/after-hash.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/after-hash.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/after-hash.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/after-hash.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/after-hash.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/code-block.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/code-block.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/code-block.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/code-block.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/code-block.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/code-block.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/complex.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/complex.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/complex.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/complex.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/complex.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/complex.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/complex.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/complex.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/through.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/through.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/through.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/through.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/through.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/through.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/snap/through.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/snap/through.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/off/through.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/off/through.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/array.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/array.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/basic-cmt.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/basic-cmt.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/basic.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/basic.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/cell-ugly.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/cell-ugly.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/cell.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/cell.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/colspan.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/colspan.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/columns.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/columns.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/complex.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/complex.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/dense.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/dense.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/empty.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/empty.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/extra-arg.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/extra-arg.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/header-footer.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/header-footer.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/large-cell.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/large-cell.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/off.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/off.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/recognize.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/recognize.typ -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/array.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/array.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/array.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/array.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/array.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/array.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/array.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/array.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/basic-cmt.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/basic-cmt.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/basic.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/basic.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/basic.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/basic.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/basic.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/basic.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/basic.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/basic.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/cell-ugly.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/cell-ugly.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/cell.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/cell.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/cell.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/cell.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/cell.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/cell.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/cell.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/cell.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/colspan.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/colspan.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/colspan.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/colspan.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/colspan.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/colspan.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/colspan.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/colspan.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/columns.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/columns.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/columns.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/columns.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/columns.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/columns.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/columns.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/columns.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/complex.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/complex.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/complex.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/complex.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/complex.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/complex.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/complex.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/complex.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/dense.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/dense.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/dense.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/dense.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/dense.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/dense.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/dense.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/dense.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/empty.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/empty.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/empty.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/empty.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/empty.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/empty.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/empty.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/empty.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/extra-arg.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/extra-arg.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/off.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/off.typ-0.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/off.typ-120.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/off.typ-120.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/off.typ-40.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/off.typ-40.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/off.typ-80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/off.typ-80.snap -------------------------------------------------------------------------------- /tests/fixtures/unit/table/snap/recognize.typ-0.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/fixtures/unit/table/snap/recognize.typ-0.snap -------------------------------------------------------------------------------- /tests/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/src/common.rs -------------------------------------------------------------------------------- /tests/src/common/directive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/src/common/directive.rs -------------------------------------------------------------------------------- /tests/src/partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/src/partial.rs -------------------------------------------------------------------------------- /tests/src/repo-e2e.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/src/repo-e2e.rs -------------------------------------------------------------------------------- /tests/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/src/tests.rs -------------------------------------------------------------------------------- /tests/src/unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typstyle-rs/typstyle/HEAD/tests/src/unit.rs --------------------------------------------------------------------------------