├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── .well-known │ └── funding-manifest-urls ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml └── workflows │ ├── autofix.yml │ ├── ci.yml │ ├── docker-image.yml │ ├── forum.yml │ ├── merge-upstream.yml │ ├── release.yml │ └── website.yml ├── .gitignore ├── .gitmodules ├── .textlintignore ├── .textlintrc.js ├── .vscode └── tasks.json ├── CITATION.cff ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.en.md ├── README.md ├── TRANSLATING_GUIDELINES.md ├── bun.lock ├── crates ├── typst-cli │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── args.rs │ │ ├── compile.rs │ │ ├── download.rs │ │ ├── fonts.rs │ │ ├── greet.rs │ │ ├── init.rs │ │ ├── main.rs │ │ ├── package.rs │ │ ├── query.rs │ │ ├── server.rs │ │ ├── terminal.rs │ │ ├── timings.rs │ │ ├── tracing.rs │ │ ├── update.rs │ │ ├── watch.rs │ │ └── world.rs ├── typst-eval │ ├── Cargo.toml │ └── src │ │ ├── access.rs │ │ ├── binding.rs │ │ ├── call.rs │ │ ├── code.rs │ │ ├── flow.rs │ │ ├── import.rs │ │ ├── lib.rs │ │ ├── markup.rs │ │ ├── math.rs │ │ ├── methods.rs │ │ ├── ops.rs │ │ ├── rules.rs │ │ └── vm.rs ├── typst-html │ ├── Cargo.toml │ └── src │ │ ├── encode.rs │ │ └── lib.rs ├── typst-ide │ ├── Cargo.toml │ └── src │ │ ├── analyze.rs │ │ ├── complete.rs │ │ ├── definition.rs │ │ ├── jump.rs │ │ ├── lib.rs │ │ ├── matchers.rs │ │ ├── tests.rs │ │ ├── tooltip.rs │ │ └── utils.rs ├── typst-kit │ ├── Cargo.toml │ └── src │ │ ├── download.rs │ │ ├── fonts.rs │ │ ├── lib.rs │ │ └── package.rs ├── typst-layout │ ├── Cargo.toml │ └── src │ │ ├── flow │ │ ├── block.rs │ │ ├── collect.rs │ │ ├── compose.rs │ │ ├── distribute.rs │ │ └── mod.rs │ │ ├── grid │ │ ├── layouter.rs │ │ ├── lines.rs │ │ ├── mod.rs │ │ ├── repeated.rs │ │ └── rowspans.rs │ │ ├── image.rs │ │ ├── inline │ │ ├── box.rs │ │ ├── collect.rs │ │ ├── deco.rs │ │ ├── finalize.rs │ │ ├── line.rs │ │ ├── linebreak.rs │ │ ├── mod.rs │ │ ├── prepare.rs │ │ └── shaping.rs │ │ ├── lib.rs │ │ ├── lists.rs │ │ ├── math │ │ ├── accent.rs │ │ ├── attach.rs │ │ ├── cancel.rs │ │ ├── frac.rs │ │ ├── fragment.rs │ │ ├── lr.rs │ │ ├── mat.rs │ │ ├── mod.rs │ │ ├── root.rs │ │ ├── run.rs │ │ ├── shared.rs │ │ ├── stretch.rs │ │ ├── text.rs │ │ └── underover.rs │ │ ├── modifiers.rs │ │ ├── pad.rs │ │ ├── pages │ │ ├── collect.rs │ │ ├── finalize.rs │ │ ├── mod.rs │ │ └── run.rs │ │ ├── repeat.rs │ │ ├── shapes.rs │ │ ├── stack.rs │ │ └── transforms.rs ├── typst-library │ ├── Cargo.toml │ ├── src │ │ ├── diag.rs │ │ ├── engine.rs │ │ ├── foundations │ │ │ ├── args.rs │ │ │ ├── array.rs │ │ │ ├── auto.rs │ │ │ ├── bool.rs │ │ │ ├── bytes.rs │ │ │ ├── calc.rs │ │ │ ├── cast.rs │ │ │ ├── content.rs │ │ │ ├── context.rs │ │ │ ├── datetime.rs │ │ │ ├── decimal.rs │ │ │ ├── dict.rs │ │ │ ├── duration.rs │ │ │ ├── element.rs │ │ │ ├── fields.rs │ │ │ ├── float.rs │ │ │ ├── func.rs │ │ │ ├── int.rs │ │ │ ├── label.rs │ │ │ ├── mod.rs │ │ │ ├── module.rs │ │ │ ├── none.rs │ │ │ ├── ops.rs │ │ │ ├── plugin.rs │ │ │ ├── repr.rs │ │ │ ├── scope.rs │ │ │ ├── selector.rs │ │ │ ├── str.rs │ │ │ ├── styles.rs │ │ │ ├── symbol.rs │ │ │ ├── sys.rs │ │ │ ├── target.rs │ │ │ ├── ty.rs │ │ │ ├── value.rs │ │ │ └── version.rs │ │ ├── html │ │ │ ├── dom.rs │ │ │ └── mod.rs │ │ ├── introspection │ │ │ ├── counter.rs │ │ │ ├── here.rs │ │ │ ├── introspector.rs │ │ │ ├── locate.rs │ │ │ ├── location.rs │ │ │ ├── locator.rs │ │ │ ├── metadata.rs │ │ │ ├── mod.rs │ │ │ ├── query.rs │ │ │ ├── state.rs │ │ │ └── tag.rs │ │ ├── layout │ │ │ ├── abs.rs │ │ │ ├── align.rs │ │ │ ├── angle.rs │ │ │ ├── axes.rs │ │ │ ├── columns.rs │ │ │ ├── container.rs │ │ │ ├── corners.rs │ │ │ ├── dir.rs │ │ │ ├── em.rs │ │ │ ├── fr.rs │ │ │ ├── fragment.rs │ │ │ ├── frame.rs │ │ │ ├── grid │ │ │ │ ├── mod.rs │ │ │ │ └── resolve.rs │ │ │ ├── hide.rs │ │ │ ├── layout.rs │ │ │ ├── length.rs │ │ │ ├── measure.rs │ │ │ ├── mod.rs │ │ │ ├── pad.rs │ │ │ ├── page.rs │ │ │ ├── place.rs │ │ │ ├── point.rs │ │ │ ├── ratio.rs │ │ │ ├── regions.rs │ │ │ ├── rel.rs │ │ │ ├── repeat.rs │ │ │ ├── sides.rs │ │ │ ├── size.rs │ │ │ ├── spacing.rs │ │ │ ├── stack.rs │ │ │ └── transform.rs │ │ ├── lib.rs │ │ ├── loading │ │ │ ├── cbor.rs │ │ │ ├── csv.rs │ │ │ ├── json.rs │ │ │ ├── mod.rs │ │ │ ├── read.rs │ │ │ ├── toml.rs │ │ │ ├── xml.rs │ │ │ └── yaml.rs │ │ ├── math │ │ │ ├── accent.rs │ │ │ ├── attach.rs │ │ │ ├── cancel.rs │ │ │ ├── equation.rs │ │ │ ├── frac.rs │ │ │ ├── lr.rs │ │ │ ├── matrix.rs │ │ │ ├── mod.rs │ │ │ ├── op.rs │ │ │ ├── root.rs │ │ │ ├── style.rs │ │ │ └── underover.rs │ │ ├── model │ │ │ ├── bibliography.rs │ │ │ ├── cite.rs │ │ │ ├── document.rs │ │ │ ├── emph.rs │ │ │ ├── enum.rs │ │ │ ├── figure.rs │ │ │ ├── footnote.rs │ │ │ ├── heading.rs │ │ │ ├── link.rs │ │ │ ├── list.rs │ │ │ ├── mod.rs │ │ │ ├── numbering.rs │ │ │ ├── outline.rs │ │ │ ├── par.rs │ │ │ ├── quote.rs │ │ │ ├── reference.rs │ │ │ ├── strong.rs │ │ │ ├── table.rs │ │ │ └── terms.rs │ │ ├── pdf │ │ │ ├── embed.rs │ │ │ └── mod.rs │ │ ├── routines.rs │ │ ├── symbols.rs │ │ ├── text │ │ │ ├── case.rs │ │ │ ├── deco.rs │ │ │ ├── font │ │ │ │ ├── book.rs │ │ │ │ ├── color.rs │ │ │ │ ├── exceptions.rs │ │ │ │ ├── mod.rs │ │ │ │ └── variant.rs │ │ │ ├── item.rs │ │ │ ├── lang.rs │ │ │ ├── linebreak.rs │ │ │ ├── lorem.rs │ │ │ ├── mod.rs │ │ │ ├── raw.rs │ │ │ ├── shift.rs │ │ │ ├── smallcaps.rs │ │ │ ├── smartquote.rs │ │ │ └── space.rs │ │ └── visualize │ │ │ ├── color.rs │ │ │ ├── curve.rs │ │ │ ├── gradient.rs │ │ │ ├── image │ │ │ ├── mod.rs │ │ │ ├── raster.rs │ │ │ └── svg.rs │ │ │ ├── line.rs │ │ │ ├── mod.rs │ │ │ ├── paint.rs │ │ │ ├── path.rs │ │ │ ├── polygon.rs │ │ │ ├── shape.rs │ │ │ ├── stroke.rs │ │ │ └── tiling.rs │ └── translations │ │ ├── ar.txt │ │ ├── bg.txt │ │ ├── ca.txt │ │ ├── cs.txt │ │ ├── da.txt │ │ ├── de.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── es.txt │ │ ├── et.txt │ │ ├── eu.txt │ │ ├── fi.txt │ │ ├── fr.txt │ │ ├── gl.txt │ │ ├── he.txt │ │ ├── hu.txt │ │ ├── is.txt │ │ ├── it.txt │ │ ├── ja.txt │ │ ├── la.txt │ │ ├── nb.txt │ │ ├── nl.txt │ │ ├── nn.txt │ │ ├── pl.txt │ │ ├── pt-PT.txt │ │ ├── pt.txt │ │ ├── ro.txt │ │ ├── ru.txt │ │ ├── sl.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sv.txt │ │ ├── tl.txt │ │ ├── tr.txt │ │ ├── uk.txt │ │ ├── vi.txt │ │ ├── zh-TW.txt │ │ └── zh.txt ├── typst-macros │ ├── Cargo.toml │ └── src │ │ ├── cast.rs │ │ ├── elem.rs │ │ ├── func.rs │ │ ├── lib.rs │ │ ├── scope.rs │ │ ├── time.rs │ │ ├── ty.rs │ │ └── util.rs ├── typst-pdf │ ├── Cargo.toml │ └── src │ │ ├── catalog.rs │ │ ├── color.rs │ │ ├── color_font.rs │ │ ├── content.rs │ │ ├── embed.rs │ │ ├── extg.rs │ │ ├── font.rs │ │ ├── gradient.rs │ │ ├── icc │ │ ├── sGrey-v4.icc │ │ └── sRGB-v4.icc │ │ ├── image.rs │ │ ├── lib.rs │ │ ├── named_destination.rs │ │ ├── outline.rs │ │ ├── page.rs │ │ ├── postscript │ │ ├── hsl.ps │ │ ├── hsv.ps │ │ └── oklab.ps │ │ ├── resources.rs │ │ └── tiling.rs ├── typst-realize │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── typst-render │ ├── Cargo.toml │ └── src │ │ ├── image.rs │ │ ├── lib.rs │ │ ├── paint.rs │ │ ├── shape.rs │ │ └── text.rs ├── typst-svg │ ├── Cargo.toml │ └── src │ │ ├── image.rs │ │ ├── lib.rs │ │ ├── paint.rs │ │ ├── shape.rs │ │ └── text.rs ├── typst-syntax │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── ast.rs │ │ ├── file.rs │ │ ├── highlight.rs │ │ ├── kind.rs │ │ ├── lexer.rs │ │ ├── lib.rs │ │ ├── node.rs │ │ ├── package.rs │ │ ├── parser.rs │ │ ├── path.rs │ │ ├── reparser.rs │ │ ├── set.rs │ │ ├── source.rs │ │ └── span.rs ├── typst-timing │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── typst-utils │ ├── Cargo.toml │ └── src │ │ ├── bitset.rs │ │ ├── deferred.rs │ │ ├── duration.rs │ │ ├── fat.rs │ │ ├── hash.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── pico.rs │ │ ├── round.rs │ │ └── scalar.rs └── typst │ ├── Cargo.toml │ └── src │ └── lib.rs ├── docs ├── Cargo.toml ├── changelog │ ├── 0.1.0.md │ ├── 0.10.0.md │ ├── 0.11.0.md │ ├── 0.11.1.md │ ├── 0.12.0.md │ ├── 0.13.0.md │ ├── 0.13.1.md │ ├── 0.2.0.md │ ├── 0.3.0.md │ ├── 0.4.0.md │ ├── 0.5.0.md │ ├── 0.6.0.md │ ├── 0.7.0.md │ ├── 0.8.0.md │ ├── 0.9.0.md │ ├── earlier.md │ └── welcome.md ├── dev │ └── architecture.md ├── glossary.md ├── guides │ ├── guide-for-latex-users.md │ ├── page-setup.md │ ├── tables.md │ └── welcome.md ├── japanese │ ├── articles.md │ ├── packages.md │ ├── templates.md │ └── welcome.md ├── overview.md ├── reference │ ├── export │ │ ├── html.md │ │ ├── pdf.md │ │ ├── png.md │ │ └── svg.md │ ├── groups.yml │ ├── language │ │ ├── context.md │ │ ├── scripting.md │ │ ├── styling.md │ │ └── syntax.md │ ├── library │ │ ├── data-loading.md │ │ ├── foundations.md │ │ ├── introspection.md │ │ ├── layout.md │ │ ├── math.md │ │ ├── model.md │ │ ├── symbols.md │ │ ├── text.md │ │ └── visualize.md │ └── welcome.md ├── src │ ├── contribs.rs │ ├── html.rs │ ├── lib.rs │ ├── link.rs │ ├── main.rs │ └── model.rs └── tutorial │ ├── 1-writing.md │ ├── 2-formatting.md │ ├── 3-advanced.md │ ├── 4-template.md │ └── welcome.md ├── flake.lock ├── flake.nix ├── mise.toml ├── package.json ├── prh.yaml ├── rustfmt.toml ├── tests ├── .gitattributes ├── Cargo.toml ├── README.md ├── fuzz │ ├── Cargo.toml │ └── src │ │ ├── compile.rs │ │ └── parse.rs ├── packages │ ├── adder-0.1.0 │ │ ├── lib.typ │ │ └── typst.toml │ └── future-0.1.0 │ │ ├── lib.typ │ │ └── typst.toml ├── ref │ ├── align-center-in-flow.png │ ├── align-in-stack.png │ ├── align-right.png │ ├── align-start-and-end.png │ ├── array-basic-syntax.png │ ├── array-insert-and-remove.png │ ├── array-join-content.png │ ├── baseline-box.png │ ├── baseline-text.png │ ├── bibliography-basic.png │ ├── bibliography-before-content.png │ ├── bibliography-full.png │ ├── bibliography-grid-par.png │ ├── bibliography-indent-par.png │ ├── bibliography-math.png │ ├── bibliography-multiple-files.png │ ├── bibliography-ordering.png │ ├── bidi-consecutive-embedded-ltr-runs.png │ ├── bidi-consecutive-embedded-rtl-runs.png │ ├── bidi-en-he-top-level.png │ ├── bidi-explicit-dir.png │ ├── bidi-manual-linebreak.png │ ├── bidi-nesting.png │ ├── bidi-obj.png │ ├── bidi-raw.png │ ├── bidi-spacing.png │ ├── bidi-whitespace-reset.png │ ├── block-box-fill.png │ ├── block-clip-svg-glyphs.png │ ├── block-clip-text.png │ ├── block-clipping-multiple-pages.png │ ├── block-consistent-width.png │ ├── block-fixed-height.png │ ├── block-fr-height-auto-width.png │ ├── block-fr-height-first-child.png │ ├── block-fr-height-multiple.png │ ├── block-fr-height.png │ ├── block-multiple-pages.png │ ├── block-sizing.png │ ├── block-spacing-basic.png │ ├── block-spacing-collapse-text-style.png │ ├── block-spacing-maximum.png │ ├── block-spacing-table.png │ ├── block-sticky-alone.png │ ├── block-sticky-breakable.png │ ├── block-sticky-colbreak.png │ ├── block-sticky-many.png │ ├── block-sticky.png │ ├── box-clip-outset.png │ ├── box-clip-radius-without-stroke.png │ ├── box-clip-radius.png │ ├── box-clip-rect.png │ ├── box-fr-width.png │ ├── box-width-fr.png │ ├── box.png │ ├── call-basic.png │ ├── cases-content-symbol.png │ ├── cases-content-text.png │ ├── circle-auto-sizing.png │ ├── circle-beyond-page-width-overflows.png │ ├── circle-directly-in-rect.png │ ├── circle-relative-sizing.png │ ├── circle-size-beyond-default.png │ ├── circle-sizing-options.png │ ├── circle.png │ ├── cite-footnote.png │ ├── cite-form.png │ ├── cite-group.png │ ├── cite-grouping-and-ordering.png │ ├── cjk-punctuation-adjustment-1.png │ ├── cjk-punctuation-adjustment-2.png │ ├── cjk-punctuation-adjustment-3.png │ ├── closure-capture-in-lvalue.png │ ├── closure-path-resolve-in-layout-phase.png │ ├── closure-without-params-non-atomic.png │ ├── code-block-basic-syntax.png │ ├── colbreak-weak.png │ ├── color-cmyk-ops.png │ ├── color-luma.png │ ├── color-outside-srgb-gamut.png │ ├── color-rotate-hue.png │ ├── color-saturation.png │ ├── color-spaces.png │ ├── columns-colbreak-after-place.png │ ├── columns-empty-second-column.png │ ├── columns-in-auto-sized-rect.png │ ├── columns-in-fixed-size-rect.png │ ├── columns-more-with-gutter.png │ ├── columns-one.png │ ├── columns-page-height-auto.png │ ├── columns-page-width-auto.png │ ├── columns-rtl.png │ ├── columns-set-page-colbreak-pagebreak.png │ ├── columns-set-page.png │ ├── coma.png │ ├── comment-end-of-line.png │ ├── comments.png │ ├── container-layoutable-child.png │ ├── content-field-materialized-heading.png │ ├── content-field-materialized-query.png │ ├── content-field-materialized-table.png │ ├── content-fields-complex.png │ ├── content-label-field-access.png │ ├── content-label-fields-method.png │ ├── content-label-has-method.png │ ├── context-compatibility-locate.png │ ├── costs-hyphenation-avoid.png │ ├── costs-runt-allow.png │ ├── costs-runt-avoid.png │ ├── costs-widow-orphan.png │ ├── counter-basic-1.png │ ├── counter-figure.png │ ├── counter-heading.png │ ├── counter-label.png │ ├── counter-page-between-pages.png │ ├── counter-page-display.png │ ├── counter-page-footer-before-set-page.png │ ├── counter-page-footer-only-update.png │ ├── counter-page-header-before-set-page.png │ ├── counter-page-header-only-update.png │ ├── counter-page.png │ ├── csv.png │ ├── curve-close-intersection.png │ ├── curve-close-smooth.png │ ├── curve-close-straight.png │ ├── curve-cubic-inflection.png │ ├── curve-cubic-mirror.png │ ├── curve-fill-rule.png │ ├── curve-line.png │ ├── curve-move-multiple-even-odd.png │ ├── curve-move-multiple-non-zero.png │ ├── curve-move-single.png │ ├── curve-multiple-non-closed.png │ ├── curve-quad-mirror.png │ ├── curve-stroke-gradient.png │ ├── decimal-display-round.png │ ├── decimal-display.png │ ├── destructuring-during-loop-continue.png │ ├── dict-basic-methods.png │ ├── dict-basic-syntax.png │ ├── dict-remove-order.png │ ├── document-set-after-content.png │ ├── document-set-title.png │ ├── double-percent.png │ ├── ellipse-auto-sizing.png │ ├── ellipse.png │ ├── emph-and-strong-call-in-word.png │ ├── emph-double-underscore-empty-hint.png │ ├── emph-syntax.png │ ├── enum-built-in-loop.png │ ├── enum-function-call.png │ ├── enum-number-align-2d.png │ ├── enum-number-align-default.png │ ├── enum-number-align-specified.png │ ├── enum-number-align-unaffected.png │ ├── enum-number-align-unfolded.png │ ├── enum-number-override-nested.png │ ├── enum-number-override.png │ ├── enum-numbering-closure-nested-complex.png │ ├── enum-numbering-closure-nested.png │ ├── enum-numbering-closure.png │ ├── enum-numbering-full.png │ ├── enum-numbering-pattern.png │ ├── enum-numbering-reversed-overriden.png │ ├── enum-numbering-reversed.png │ ├── enum-par.png │ ├── enum-syntax-at-start.png │ ├── enum-syntax-edge-cases.png │ ├── enum-syntax-number-length.png │ ├── escape.png │ ├── eval-in-show-rule.png │ ├── eval-mode.png │ ├── eval-path-resolve-in-show-rule.png │ ├── eval-path-resolve.png │ ├── field-function.png │ ├── figure-align.png │ ├── figure-and-caption-show.png │ ├── figure-basic.png │ ├── figure-breakable.png │ ├── figure-caption-separator.png │ ├── figure-caption-show.png │ ├── figure-caption-where-selector.png │ ├── figure-localization-el.png │ ├── figure-localization-fr.png │ ├── figure-localization-ru.png │ ├── figure-localization-zh.png │ ├── figure-par.png │ ├── figure-placement.png │ ├── figure-table.png │ ├── figure-theorem.png │ ├── float-display.png │ ├── float-repr.png │ ├── flow-first-region-counter-update-and-placed.png │ ├── flow-first-region-counter-update-placed-and-line.png │ ├── flow-first-region-counter-update.png │ ├── flow-first-region-no-item.png │ ├── flow-first-region-placed.png │ ├── flow-first-region-zero-sized-item.png │ ├── flow-fr.png │ ├── flow-heading-no-orphan.png │ ├── flow-par-no-orphan-and-widow-lines.png │ ├── flow-widow-forced.png │ ├── fold-vec-order-meta.png │ ├── fold-vec-order-text-decos.png │ ├── fold-vec-order-text-features.png │ ├── footnote-basic.png │ ├── footnote-block-at-end.png │ ├── footnote-block-fr.png │ ├── footnote-break-across-pages-block.png │ ├── footnote-break-across-pages-float.png │ ├── footnote-break-across-pages-nested.png │ ├── footnote-break-across-pages.png │ ├── footnote-duplicate.png │ ├── footnote-entry.png │ ├── footnote-float-priority.png │ ├── footnote-in-caption.png │ ├── footnote-in-columns.png │ ├── footnote-in-list.png │ ├── footnote-in-place.png │ ├── footnote-in-table.png │ ├── footnote-invariant.png │ ├── footnote-multiple-in-one-line.png │ ├── footnote-nested-break-across-pages.png │ ├── footnote-nested-same-frame.png │ ├── footnote-nested.png │ ├── footnote-ref-call.png │ ├── footnote-ref-forward.png │ ├── footnote-ref-in-footnote.png │ ├── footnote-ref-multiple.png │ ├── footnote-ref.png │ ├── footnote-space-collapsing.png │ ├── footnote-styling.png │ ├── for-loop-basic.png │ ├── gradient-conic-angled.png │ ├── gradient-conic-center-shifted-1.png │ ├── gradient-conic-center-shifted-2.png │ ├── gradient-conic-hsl.png │ ├── gradient-conic-hsv.png │ ├── gradient-conic-oklab.png │ ├── gradient-conic-oklch.png │ ├── gradient-conic-relative-parent.png │ ├── gradient-conic-relative-self.png │ ├── gradient-conic-stroke.png │ ├── gradient-conic-text.png │ ├── gradient-conic.png │ ├── gradient-fill-and-stroke.png │ ├── gradient-linear-angled.png │ ├── gradient-linear-hsl.png │ ├── gradient-linear-hsv.png │ ├── gradient-linear-line.png │ ├── gradient-linear-oklab.png │ ├── gradient-linear-oklch.png │ ├── gradient-linear-relative-parent-block.png │ ├── gradient-linear-relative-parent.png │ ├── gradient-linear-relative-self.png │ ├── gradient-linear-repeat-and-mirror-1.png │ ├── gradient-linear-repeat-and-mirror-2.png │ ├── gradient-linear-repeat-and-mirror-3.png │ ├── gradient-linear-sharp-and-repeat.png │ ├── gradient-linear-sharp-and-smooth.png │ ├── gradient-linear-sharp-repeat-and-mirror.png │ ├── gradient-linear-sharp.png │ ├── gradient-linear-stroke-relative-parent.png │ ├── gradient-linear-stroke.png │ ├── gradient-math-cancel.png │ ├── gradient-math-conic.png │ ├── gradient-math-dir.png │ ├── gradient-math-frac.png │ ├── gradient-math-mat.png │ ├── gradient-math-misc.png │ ├── gradient-math-radial.png │ ├── gradient-math-root.png │ ├── gradient-math-underover.png │ ├── gradient-presets.png │ ├── gradient-radial-center.png │ ├── gradient-radial-focal-center-and-radius.png │ ├── gradient-radial-hsl.png │ ├── gradient-radial-radius.png │ ├── gradient-radial-relative-parent.png │ ├── gradient-radial-relative-self.png │ ├── gradient-radial-text.png │ ├── gradient-repr.png │ ├── gradient-text-decoration.png │ ├── gradient-text-dir.png │ ├── gradient-text-global.png │ ├── gradient-text-in-container.png │ ├── gradient-text-rotate.png │ ├── gradient-transformed.png │ ├── grid-align.png │ ├── grid-auto-shrink.png │ ├── grid-breaking-expand-vertically.png │ ├── grid-calendar.png │ ├── grid-cell-align-override.png │ ├── grid-cell-breaking.png │ ├── grid-cell-folding.png │ ├── grid-cell-override-in-header-and-footer-with-gutter.png │ ├── grid-cell-override-in-header-and-footer.png │ ├── grid-cell-override.png │ ├── grid-cell-position-automatic-skip-manual.png │ ├── grid-cell-position-extra-rows.png │ ├── grid-cell-position-out-of-order.png │ ├── grid-cell-position-partial.png │ ├── grid-cell-set.png │ ├── grid-cell-show-and-override.png │ ├── grid-cell-show-based-on-position.png │ ├── grid-cell-show-emph.png │ ├── grid-cell-show-x-y.png │ ├── grid-cell-show.png │ ├── grid-cell-various-overrides.png │ ├── grid-colspan-gutter.png │ ├── grid-colspan-multiple-regions.png │ ├── grid-colspan-over-all-fr-columns-page-width-auto.png │ ├── grid-colspan-over-all-fr-columns.png │ ├── grid-colspan-over-some-fr-columns.png │ ├── grid-colspan-thick-stroke.png │ ├── grid-colspan.png │ ├── grid-column-sizing-auto-base.png │ ├── grid-column-sizing-fr-base.png │ ├── grid-column-sizing-mixed-base.png │ ├── grid-columns-sizings-rect.png │ ├── grid-complete-rows.png │ ├── grid-consecutive-rows-breaking.png │ ├── grid-exam.png │ ├── grid-fill-func.png │ ├── grid-finance.png │ ├── grid-footer-bare-1.png │ ├── grid-footer-bare-2.png │ ├── grid-footer-below-rowspans.png │ ├── grid-footer-cell-with-y.png │ ├── grid-footer-expand.png │ ├── grid-footer-gutter-and-no-repeat.png │ ├── grid-footer-hline-and-vline-1.png │ ├── grid-footer-hline-and-vline-2.png │ ├── grid-footer-relative-row-sizes.png │ ├── grid-footer-rowspan.png │ ├── grid-footer-stroke-edge-cases.png │ ├── grid-footer-top-stroke.png │ ├── grid-footer.png │ ├── grid-funcs-gutter.png │ ├── grid-gutter-fr.png │ ├── grid-header-and-footer-containing-rowspan.png │ ├── grid-header-and-footer-empty.png │ ├── grid-header-and-footer-lack-of-space.png │ ├── grid-header-and-footer-orphan-prevention.png │ ├── grid-header-and-rowspan-non-contiguous-1.png │ ├── grid-header-and-rowspan-non-contiguous-2.png │ ├── grid-header-and-rowspan-non-contiguous-3.png │ ├── grid-header-block-with-fixed-height.png │ ├── grid-header-cell-with-y.png │ ├── grid-header-containing-rowspan.png │ ├── grid-header-empty.png │ ├── grid-header-expand.png │ ├── grid-header-footer-and-rowspan-non-contiguous-1.png │ ├── grid-header-footer-and-rowspan-non-contiguous-2.png │ ├── grid-header-footer-block-with-fixed-height.png │ ├── grid-header-hline-and-vline.png │ ├── grid-header-hline-bottom-manually.png │ ├── grid-header-hline-bottom.png │ ├── grid-header-lack-of-space.png │ ├── grid-header-last-child.png │ ├── grid-header-nested.png │ ├── grid-header-orphan-prevention.png │ ├── grid-header-relative-row-sizes.png │ ├── grid-header-rowspan-base.png │ ├── grid-header-stroke-edge-cases.png │ ├── grid-headers-gutter.png │ ├── grid-headers-no-repeat.png │ ├── grid-headers.png │ ├── grid-inset-folding.png │ ├── grid-inset.png │ ├── grid-nested-breaking.png │ ├── grid-nested-footers.png │ ├── grid-nested-headers.png │ ├── grid-nested-with-footers.png │ ├── grid-nested-with-headers.png │ ├── grid-row-sizing-manual-align.png │ ├── grid-rowspan-block-full-height.png │ ├── grid-rowspan-block-overflow.png │ ├── grid-rowspan-cell-coordinates.png │ ├── grid-rowspan-cell-order.png │ ├── grid-rowspan-excessive-gutter.png │ ├── grid-rowspan-excessive.png │ ├── grid-rowspan-fixed-size.png │ ├── grid-rowspan-gutter.png │ ├── grid-rowspan-in-all-columns-stroke-gutter.png │ ├── grid-rowspan-in-all-columns-stroke.png │ ├── grid-rowspan-over-auto-row.png │ ├── grid-rowspan-over-fr-row-at-end.png │ ├── grid-rowspan-over-fr-row-at-start.png │ ├── grid-rowspan-split-1.png │ ├── grid-rowspan-split-10.png │ ├── grid-rowspan-split-11.png │ ├── grid-rowspan-split-12.png │ ├── grid-rowspan-split-13.png │ ├── grid-rowspan-split-14.png │ ├── grid-rowspan-split-15.png │ ├── grid-rowspan-split-16.png │ ├── grid-rowspan-split-17.png │ ├── grid-rowspan-split-2.png │ ├── grid-rowspan-split-3.png │ ├── grid-rowspan-split-4.png │ ├── grid-rowspan-split-5.png │ ├── grid-rowspan-split-6.png │ ├── grid-rowspan-split-7.png │ ├── grid-rowspan-split-8.png │ ├── grid-rowspan-split-9.png │ ├── grid-rowspan-unbreakable-1.png │ ├── grid-rowspan-unbreakable-2.png │ ├── grid-rowspan.png │ ├── grid-rtl-colspan-stroke.png │ ├── grid-rtl-colspan.png │ ├── grid-rtl-complex.png │ ├── grid-rtl-header.png │ ├── grid-rtl-multiple-regions.png │ ├── grid-rtl-rowspan.png │ ├── grid-rtl-vline-position.png │ ├── grid-rtl.png │ ├── grid-same-row-multiple-columns-breaking.png │ ├── grid-stroke-array.png │ ├── grid-stroke-automatically-positioned-lines.png │ ├── grid-stroke-border-partial.png │ ├── grid-stroke-complex.png │ ├── grid-stroke-field-in-show.png │ ├── grid-stroke-folding.png │ ├── grid-stroke-func.png │ ├── grid-stroke-hline-position-bottom-gutter.png │ ├── grid-stroke-hline-position-bottom.png │ ├── grid-stroke-hline-rowspan.png │ ├── grid-stroke-manually-positioned-lines.png │ ├── grid-stroke-none.png │ ├── grid-stroke-priority-cell.png │ ├── grid-stroke-priority-line-cell.png │ ├── grid-stroke-priority-line.png │ ├── grid-stroke-set-on-cell-and-line.png │ ├── grid-stroke-tiling.png │ ├── grid-stroke-vline-colspan.png │ ├── grid-stroke-vline-position-left-and-right.png │ ├── grid-trailing-linebreak-region-overflow.png │ ├── heading-basic.png │ ├── heading-block.png │ ├── heading-hanging-indent-auto.png │ ├── heading-hanging-indent-length.png │ ├── heading-hanging-indent-zero.png │ ├── heading-offset-and-level.png │ ├── heading-offset.png │ ├── heading-par.png │ ├── heading-show-where.png │ ├── heading-syntax-at-start.png │ ├── heading-syntax-edge-cases.png │ ├── hide-image.png │ ├── hide-line.png │ ├── hide-list.png │ ├── hide-polygon.png │ ├── hide-rect.png │ ├── hide-table.png │ ├── hide-text.png │ ├── highlight-bounds.png │ ├── highlight-edges-bounds.png │ ├── highlight-edges.png │ ├── highlight-radius.png │ ├── highlight-stroke.png │ ├── highlight.png │ ├── html │ │ ├── basic-table.html │ │ ├── block-html.html │ │ ├── box-html.html │ │ ├── col-gutter-table.html │ │ ├── col-row-gutter-table.html │ │ ├── enum-par.html │ │ ├── enum-start.html │ │ ├── heading-html-basic.html │ │ ├── html-elem-alone-context.html │ │ ├── html-elem-metadata.html │ │ ├── link-basic.html │ │ ├── list-par.html │ │ ├── par-semantic-html.html │ │ ├── quote-attribution-link.html │ │ ├── quote-nesting-html.html │ │ ├── quote-plato.html │ │ ├── row-gutter-table.html │ │ └── terms-par.html │ ├── hyphenate-between-shape-runs.png │ ├── hyphenate-es-capitalized-names.png │ ├── hyphenate-es-repeat-hyphen.png │ ├── hyphenate-off-temporarily.png │ ├── hyphenate-outside-of-words.png │ ├── hyphenate-pt-dash-emphasis.png │ ├── hyphenate-pt-no-repeat-hyphen.png │ ├── hyphenate-pt-repeat-hyphen-hyphenate-true-with-emphasis.png │ ├── hyphenate-pt-repeat-hyphen-hyphenate-true.png │ ├── hyphenate-pt-repeat-hyphen-natural-word-breaking.png │ ├── hyphenate-punctuation.png │ ├── hyphenate-shy.png │ ├── hyphenate.png │ ├── if-condition-complex.png │ ├── if-markup.png │ ├── image-baseline-with-box.png │ ├── image-decode-detect-format.png │ ├── image-decode-specify-format.png │ ├── image-decode-svg.png │ ├── image-fit.png │ ├── image-jpg.png │ ├── image-jump-to-next-page.png │ ├── image-natural-dpi-sizing.png │ ├── image-pixmap-luma8.png │ ├── image-pixmap-lumaa8.png │ ├── image-pixmap-rgb8.png │ ├── image-pixmap-rgba8.png │ ├── image-png.png │ ├── image-rgba-png-and-jpeg.png │ ├── image-scaling-methods.png │ ├── image-sizing.png │ ├── image-svg-auto-detection.png │ ├── image-svg-complex.png │ ├── image-svg-text-font.png │ ├── image-svg-text.png │ ├── import-basic.png │ ├── import-from-function-scope.png │ ├── import-source-field-access.png │ ├── include-file.png │ ├── int-display.png │ ├── int-repr.png │ ├── issue-1041-smartquotes-in-outline.png │ ├── issue-1050-terms-indent.png │ ├── issue-1052-math-number-spacing.png │ ├── issue-1216-clamp-panic.png │ ├── issue-1240-stack-h-fr.png │ ├── issue-1240-stack-v-fr.png │ ├── issue-1368-place-pagebreak.png │ ├── issue-1373-bidi-tofus.png │ ├── issue-1388-table-row-missing.png │ ├── issue-1398-line-align.png │ ├── issue-1433-footnote-in-list.png │ ├── issue-1445-widow-orphan-unnecessary-skip.png │ ├── issue-1540-smartquotes-across-newlines.png │ ├── issue-1597-cite-footnote.png │ ├── issue-1617-mat-align.png │ ├── issue-1825-rect-overflow.png │ ├── issue-183-table-lines.png │ ├── issue-1833-locate-place.png │ ├── issue-1850-list-attach-spacing.png │ ├── issue-1886-locate-after-metadata.png │ ├── issue-1948-math-text-break.png │ ├── issue-2044-invalid-parsed-ident.png │ ├── issue-2048-outline-multiline.png │ ├── issue-2051-new-cm-svg.png │ ├── issue-2055-math-eval.png │ ├── issue-2095-pagebreak-numbering.png │ ├── issue-2105-linebreak-tofu.png │ ├── issue-2128-block-width-box.png │ ├── issue-2134-pagebreak-bibliography.png │ ├── issue-2162-pagebreak-set-style.png │ ├── issue-2199-place-spacing-bottom.png │ ├── issue-2199-place-spacing-default.png │ ├── issue-2213-align-fr.png │ ├── issue-2214-baseline-math.png │ ├── issue-2259-raw-color-overwrite.png │ ├── issue-2268-mat-augment-color.png │ ├── issue-2326-context-set-page.png │ ├── issue-2419-justify-hanging-indent.png │ ├── issue-2480-counter-reset-2.png │ ├── issue-2480-counter-reset.png │ ├── issue-2530-enum-item-panic.png │ ├── issue-2530-figure-caption-panic.png │ ├── issue-2530-list-item-panic.png │ ├── issue-2530-term-item-panic.png │ ├── issue-2531-cite-show-set.png │ ├── issue-2538-cjk-latin-spacing-before-linebreak.png │ ├── issue-2595-float-overlap.png │ ├── issue-2631-page-header-ordering.png │ ├── issue-2650-cjk-latin-spacing-meta.png │ ├── issue-2715-float-order.png │ ├── issue-2841-pagebreak-to-weak.png │ ├── issue-2902-gradient-oklab-panic.png │ ├── issue-2902-gradient-oklch-panic.png │ ├── issue-3082-chinese-punctuation.png │ ├── issue-3191-raw-justify.png │ ├── issue-3191-raw-normal-paragraphs-still-shrink.png │ ├── issue-3232-dict-empty.png │ ├── issue-3264-rect-negative-dimensions.png │ ├── issue-3355-metadata-weak-spacing.png │ ├── issue-3363-json-large-number.png │ ├── issue-3481-cite-location.png │ ├── issue-3586-figure-caption-separator.png │ ├── issue-3601-empty-raw.png │ ├── issue-3624-spacing-behaviour.png │ ├── issue-3641-float-loop.png │ ├── issue-3650-italic-equation.png │ ├── issue-3658-math-size.png │ ├── issue-3662-pdf-smartquotes.png │ ├── issue-3696-equation-rtl.png │ ├── issue-3699-cite-twice-et-al.png │ ├── issue-3700-deformed-stroke.png │ ├── issue-3726-query-show-set.png │ ├── issue-3733-dpi-svg.png │ ├── issue-3774-math-call-empty-2d-args.png │ ├── issue-3820-raw-space-when-end-with-backtick.png │ ├── issue-3841-tabs-in-raw-type-code.png │ ├── issue-3866-block-migration.png │ ├── issue-3973-math-equation-align.png │ ├── issue-4029-locate-after-pagebreak.png │ ├── issue-4029-locate-after-par-and-pagebreak.png │ ├── issue-4029-locate-after-spacing.png │ ├── issue-4087.png │ ├── issue-4187-alignment-point-affects-row-height.png │ ├── issue-4188-lr-corner-brackets.png │ ├── issue-4278-par-trim-before-equation.png │ ├── issue-4340-set-document-and-page.png │ ├── issue-4361-transparency-leak.png │ ├── issue-4363-set-page-after-tag.png │ ├── issue-4454-footnote-ref-numbering.png │ ├── issue-4468-linebreak-thai.png │ ├── issue-4476-outline-rtl-title-ending-in-ltr-text.png │ ├── issue-4618-bibliography-set-heading-level.png │ ├── issue-4651-justify-bad-bound.png │ ├── issue-4662-math-mode-language-for-raw.png │ ├── issue-4829-math-pagebreaking-wrong-number.png │ ├── issue-4859-outline-entry-show-set.png │ ├── issue-4938-par-bad-ratio.png │ ├── issue-4966-figure-float-counter.png │ ├── issue-4985-up-tack-is-normal-perp-is-relation.png │ ├── issue-5014-show-text-tags.png │ ├── issue-5024-spill-backlog.png │ ├── issue-5044-pad-100-percent.png │ ├── issue-5146-smartquotes-after-equations.png │ ├── issue-5160-unbreakable-pad.png │ ├── issue-5176-cjk-title.png │ ├── issue-5176-outline-cjk-title.png │ ├── issue-5235-linebreak-optimized-without-justify.png │ ├── issue-5244-consecutive-weak-space-heading.png │ ├── issue-5244-consecutive-weak-space.png │ ├── issue-5253-consecutive-weak-space-math.png │ ├── issue-5256-multiple-footnotes-in-footnote.png │ ├── issue-5262-block-negative-height-implicit.png │ ├── issue-5262-block-negative-height-in-flow.png │ ├── issue-5262-block-negative-height.png │ ├── issue-5262-text-negative-size.png │ ├── issue-5296-block-sticky-in-block-at-top.png │ ├── issue-5296-block-sticky-spaced-from-top-of-page.png │ ├── issue-5296-block-sticky-weakly-spaced-from-top-of-page.png │ ├── issue-5354-footnote-empty-frame-infinite-loop.png │ ├── issue-5360-unnecessary-hyphenation.png │ ├── issue-5435-footnote-migration-in-floats.png │ ├── issue-5490-bidi-invalid-range-2.png │ ├── issue-5490-bidi-invalid-range.png │ ├── issue-5496-footnote-in-float-never-fits.png │ ├── issue-5496-footnote-never-fits-multiple.png │ ├── issue-5496-footnote-never-fits.png │ ├── issue-5496-footnote-separator-never-fits.png │ ├── issue-5499-text-fill-in-clip-block.png │ ├── issue-5503-cite-group-interrupted-by-par-align.png │ ├── issue-5503-cite-in-align.png │ ├── issue-5503-enum-in-align.png │ ├── issue-5503-list-in-align.png │ ├── issue-5503-terms-in-align.png │ ├── issue-5719-enum-nested.png │ ├── issue-5719-heading-nested.png │ ├── issue-5719-list-nested.png │ ├── issue-5719-terms-nested.png │ ├── issue-5760-disable-cjk-latin-spacing-in-raw.png │ ├── issue-5831-par-constructor-args.png │ ├── issue-5930-symbol-label.png │ ├── issue-622-hide-meta-cite.png │ ├── issue-622-hide-meta-outline.png │ ├── issue-758-link-repeat.png │ ├── issue-785-cite-locate.png │ ├── issue-80-emoji-linebreak.png │ ├── issue-852-mat-type.png │ ├── issue-870-image-rotation.png │ ├── issue-886-args-sink.png │ ├── issue-color-mix-luma.png │ ├── issue-columns-heading.png │ ├── issue-curve-in-sized-container.png │ ├── issue-flow-frame-placement.png │ ├── issue-flow-layout-index-out-of-bounds.png │ ├── issue-flow-overlarge-frames.png │ ├── issue-flow-trailing-leading.png │ ├── issue-flow-weak-spacing.png │ ├── issue-footnotes-skip-first-page.png │ ├── issue-gradient-cmyk-encode.png │ ├── issue-grid-base-auto-row-list.png │ ├── issue-grid-base-auto-row.png │ ├── issue-grid-double-skip.png │ ├── issue-grid-gutter-skip.png │ ├── issue-grid-skip-list.png │ ├── issue-grid-skip.png │ ├── issue-hyphenate-in-link.png │ ├── issue-math-realize-hide.png │ ├── issue-math-realize-scripting.png │ ├── issue-math-realize-show.png │ ├── issue-multiple-footnote-in-one-line.png │ ├── issue-non-atomic-closure.png │ ├── issue-path-in-sized-container.png │ ├── issue-place-base.png │ ├── issue-rtl-safe-to-break-panic.png │ ├── justify-avoid-runts.png │ ├── justify-basically-empty.png │ ├── justify-chinese.png │ ├── justify-code-blocks.png │ ├── justify-japanese.png │ ├── justify-justified-linebreak.png │ ├── justify-knuth-story.png │ ├── justify-manual-linebreak.png │ ├── justify-no-leading-spaces.png │ ├── justify-punctuation-adjustment.png │ ├── justify-shrink-last-line.png │ ├── justify-variants.png │ ├── justify-whitespace-adjustment.png │ ├── justify-without-justifiables.png │ ├── justify.png │ ├── label-after-expression.png │ ├── label-after-parbreak.png │ ├── label-dynamic-show-set.png │ ├── label-in-block.png │ ├── label-on-text.png │ ├── label-show-where-selector.png │ ├── label-unclosed-is-text.png │ ├── layout-in-fixed-size-block.png │ ├── layout-in-page-call.png │ ├── let-basic.png │ ├── let-termination.png │ ├── line-basic.png │ ├── line-numbers-auto-alignment.png │ ├── line-numbers-clearance.png │ ├── line-numbers-columns-alignment.png │ ├── line-numbers-columns-override.png │ ├── line-numbers-columns-rtl.png │ ├── line-numbers-columns.png │ ├── line-numbers-deduplication-tall-line.png │ ├── line-numbers-deduplication-zero-height-number.png │ ├── line-numbers-deduplication.png │ ├── line-numbers-default-alignment.png │ ├── line-numbers-enable.png │ ├── line-numbers-equation-number.png │ ├── line-numbers-margin.png │ ├── line-numbers-multi-columns.png │ ├── line-numbers-nested-content.png │ ├── line-numbers-page-scope-quasi-empty-first-column.png │ ├── line-numbers-page-scope-with-columns.png │ ├── line-numbers-page-scope.png │ ├── line-numbers-place-out-of-order.png │ ├── line-numbers-rtl.png │ ├── line-numbers-start-alignment.png │ ├── line-positioning.png │ ├── line-stroke-dash.png │ ├── line-stroke-set.png │ ├── line-stroke.png │ ├── linebreak-cite-punctuation.png │ ├── linebreak-hyphen-nbsp.png │ ├── linebreak-link-end.png │ ├── linebreak-link-justify.png │ ├── linebreak-link.png │ ├── linebreak-manual-consecutive.png │ ├── linebreak-manual-directly-after-automatic.png │ ├── linebreak-manual-justified.png │ ├── linebreak-manual-trailing-multiple.png │ ├── linebreak-manual.png │ ├── linebreak-math-punctuation.png │ ├── linebreak-narrow-nbsp.png │ ├── linebreak-overflow-double.png │ ├── linebreak-overflow.png │ ├── linebreak-shape-run.png │ ├── linebreak-thai.png │ ├── link-basic.png │ ├── link-bracket-balanced.png │ ├── link-bracket-unbalanced-closing.png │ ├── link-empty-block.png │ ├── link-on-block.png │ ├── link-show.png │ ├── link-to-label.png │ ├── link-to-page.png │ ├── link-trailing-period.png │ ├── link-transformed.png │ ├── list-attached-above-spacing.png │ ├── list-attached.png │ ├── list-basic.png │ ├── list-content-block.png │ ├── list-indent-specifics.png │ ├── list-item-styling.png │ ├── list-items-context.png │ ├── list-marker-align-unaffected.png │ ├── list-marker-bare-hyphen.png │ ├── list-marker-closure.png │ ├── list-marker-cycle.png │ ├── list-marker-dash.png │ ├── list-mix.png │ ├── list-mixed-tabs-and-spaces.png │ ├── list-nested.png │ ├── list-non-attached-followed-by-attached.png │ ├── list-par.png │ ├── list-rtl.png │ ├── list-syntax-edge-cases.png │ ├── list-tabs.png │ ├── list-tight-non-attached-tight.png │ ├── list-top-level-indent.png │ ├── list-wide-cannot-attach.png │ ├── list-wide-really-cannot-attach.png │ ├── locate-between-pages.png │ ├── locate-element-selector.png │ ├── locate-position-trailing-tag.png │ ├── locate-position.png │ ├── loop-break-join-in-first-arg.png │ ├── loop-break-join-in-nested-blocks.png │ ├── loop-break-join-in-set-rule-args.png │ ├── loop-break-join-set-and-show.png │ ├── lorem-pars.png │ ├── lorem.png │ ├── math-accent-align.png │ ├── math-accent-bounds.png │ ├── math-accent-dotless.png │ ├── math-accent-func.png │ ├── math-accent-high-base.png │ ├── math-accent-sized-script.png │ ├── math-accent-sized.png │ ├── math-accent-superscript.png │ ├── math-accent-sym-call.png │ ├── math-accent-wide-base.png │ ├── math-align-aligned-in-source.png │ ├── math-align-basic.png │ ├── math-align-cases.png │ ├── math-align-implicit.png │ ├── math-align-lines-mixed.png │ ├── math-align-post-fix.png │ ├── math-align-toggle.png │ ├── math-align-weird.png │ ├── math-align-wider-first-column.png │ ├── math-at-line-end.png │ ├── math-at-line-start.png │ ├── math-at-par-end.png │ ├── math-at-par-start.png │ ├── math-attach-default-placement.png │ ├── math-attach-descender-collision.png │ ├── math-attach-followed-by-func-call.png │ ├── math-attach-force-scripts-and-limits.png │ ├── math-attach-high.png │ ├── math-attach-horizontal-align.png │ ├── math-attach-integral.png │ ├── math-attach-kerning-mixed.png │ ├── math-attach-kerning.png │ ├── math-attach-large-operator.png │ ├── math-attach-limit-long.png │ ├── math-attach-limit.png │ ├── math-attach-mixed.png │ ├── math-attach-nested-base.png │ ├── math-attach-nested-deep-base.png │ ├── math-attach-nested.png │ ├── math-attach-postscripts.png │ ├── math-attach-prescripts.png │ ├── math-attach-scripts-extended-shapes.png │ ├── math-attach-show-limit.png │ ├── math-attach-subscript-multiline.png │ ├── math-attach-to-group.png │ ├── math-binom-multiple.png │ ├── math-binom.png │ ├── math-box-with-baseline.png │ ├── math-box-without-baseline.png │ ├── math-call-2d-semicolon-priority.png │ ├── math-call-empty-args-non-func.png │ ├── math-call-named-args.png │ ├── math-call-non-func.png │ ├── math-call-pass-to-box.png │ ├── math-call-spread-shorthand-clash.png │ ├── math-cancel-angle-absolute.png │ ├── math-cancel-angle-func.png │ ├── math-cancel-cross.png │ ├── math-cancel-customized.png │ ├── math-cancel-display.png │ ├── math-cancel-inline.png │ ├── math-cancel-inverted.png │ ├── math-cases-delim.png │ ├── math-cases-gap.png │ ├── math-cases-linebreaks.png │ ├── math-cases.png │ ├── math-class-chars.png │ ├── math-class-content.png │ ├── math-class-exceptions.png │ ├── math-class-limits.png │ ├── math-class-nested.png │ ├── math-common-symbols.png │ ├── math-consecutive.png │ ├── math-dif.png │ ├── math-equation-align-numbered.png │ ├── math-equation-align-unnumbered.png │ ├── math-equation-auto-wrapping.png │ ├── math-equation-font.png │ ├── math-equation-number-align-end.png │ ├── math-equation-number-align-left.png │ ├── math-equation-number-align-monoline.png │ ├── math-equation-number-align-multiline-bottom.png │ ├── math-equation-number-align-multiline-expand.png │ ├── math-equation-number-align-multiline-no-expand.png │ ├── math-equation-number-align-multiline-top-start.png │ ├── math-equation-number-align-multiline.png │ ├── math-equation-number-align-right.png │ ├── math-equation-number-align-start.png │ ├── math-equation-number-align.png │ ├── math-equation-number-empty.png │ ├── math-equation-numbering.png │ ├── math-equation-show-rule.png │ ├── math-equation-tag-affects-row-height.png │ ├── math-font-fallback.png │ ├── math-font-features.png │ ├── math-font-switch.png │ ├── math-frac-associativity.png │ ├── math-frac-baseline.png │ ├── math-frac-gap.png │ ├── math-frac-large.png │ ├── math-frac-paren-removal.png │ ├── math-frac-precedence.png │ ├── math-linebreaking-after-binop-and-rel.png │ ├── math-linebreaking-after-relation-without-space.png │ ├── math-linebreaking-between-consecutive-relations.png │ ├── math-linebreaking-empty.png │ ├── math-linebreaking-in-box.png │ ├── math-linebreaking-lr.png │ ├── math-linebreaking-multiline.png │ ├── math-linebreaking-trailing-linebreak.png │ ├── math-lr-call.png │ ├── math-lr-color.png │ ├── math-lr-fences.png │ ├── math-lr-half.png │ ├── math-lr-ignore-ignorant.png │ ├── math-lr-matching.png │ ├── math-lr-mid-size-nested-equation.png │ ├── math-lr-mid-size.png │ ├── math-lr-mid.png │ ├── math-lr-nested.png │ ├── math-lr-scripts.png │ ├── math-lr-shorthands.png │ ├── math-lr-size.png │ ├── math-lr-symbol-unmatched.png │ ├── math-lr-unbalanced.png │ ├── math-lr-unmatched.png │ ├── math-lr-unparen.png │ ├── math-lr-weak-spacing.png │ ├── math-mat-align-complex.png │ ├── math-mat-align-explicit--alternating.png │ ├── math-mat-align-explicit-alternating.png │ ├── math-mat-align-explicit-left.png │ ├── math-mat-align-explicit-mixed.png │ ├── math-mat-align-explicit-right.png │ ├── math-mat-align-implicit.png │ ├── math-mat-align-signed-numbers.png │ ├── math-mat-align.png │ ├── math-mat-augment-set.png │ ├── math-mat-augment.png │ ├── math-mat-baseline.png │ ├── math-mat-delim-direct.png │ ├── math-mat-delim-set.png │ ├── math-mat-delims-inverted.png │ ├── math-mat-delims-pair.png │ ├── math-mat-delims.png │ ├── math-mat-gap.png │ ├── math-mat-gaps.png │ ├── math-mat-linebreaks.png │ ├── math-mat-semicolon.png │ ├── math-mat-sparse.png │ ├── math-mat-spread-1d.png │ ├── math-mat-spread-2d.png │ ├── math-mat-spread.png │ ├── math-multiline-multiple-trailing-linebreaks.png │ ├── math-multiline-no-trailing-linebreak.png │ ├── math-multiline-trailing-linebreak.png │ ├── math-nested-normal-layout.png │ ├── math-non-math-content.png │ ├── math-op-call.png │ ├── math-op-custom.png │ ├── math-op-predefined.png │ ├── math-op-scripts-vs-limits.png │ ├── math-op-styled.png │ ├── math-optical-size-frac-script-script.png │ ├── math-optical-size-nested-scripts.png │ ├── math-optical-size-prime-large-operator.png │ ├── math-optical-size-primes.png │ ├── math-pagebreaking-numbered.png │ ├── math-pagebreaking-single-line-numbered.png │ ├── math-pagebreaking-single-line.png │ ├── math-pagebreaking.png │ ├── math-par.png │ ├── math-primes-after-code-expr.png │ ├── math-primes-attach.png │ ├── math-primes-complex.png │ ├── math-primes-limits.png │ ├── math-primes-scripts.png │ ├── math-primes-spaces.png │ ├── math-primes-with-superscript.png │ ├── math-primes.png │ ├── math-root-basic.png │ ├── math-root-large-body.png │ ├── math-root-large-index.png │ ├── math-root-precomposed.png │ ├── math-root-radical-attachment.png │ ├── math-root-syntax.png │ ├── math-shorthands.png │ ├── math-size-arbitrary-content.png │ ├── math-size-math-content-1.png │ ├── math-size-math-content-2.png │ ├── math-size-math-content-3.png │ ├── math-size-resolve.png │ ├── math-size.png │ ├── math-spacing-basic.png │ ├── math-spacing-decorated.png │ ├── math-spacing-ignorant.png │ ├── math-spacing-kept-spaces.png │ ├── math-spacing-predefined.png │ ├── math-spacing-script.png │ ├── math-spacing-set-comprehension.png │ ├── math-spacing-weak.png │ ├── math-stretch-attach-nested-equation.png │ ├── math-stretch-basic.png │ ├── math-stretch-complex.png │ ├── math-stretch-horizontal-attach.png │ ├── math-stretch-horizontal.png │ ├── math-stretch-nested.png │ ├── math-stretch-shorthand.png │ ├── math-stretch-vertical-attach.png │ ├── math-stretch-vertical-scripts.png │ ├── math-stretch-vertical.png │ ├── math-style-dotless.png │ ├── math-style-exceptions.png │ ├── math-style-greek-exceptions.png │ ├── math-style-hebrew-exceptions.png │ ├── math-style-italic-default.png │ ├── math-style.png │ ├── math-symbol-show-rule.png │ ├── math-table.png │ ├── math-text-color.png │ ├── math-text-size.png │ ├── math-underover-brace.png │ ├── math-underover-brackets.png │ ├── math-underover-line-bracket.png │ ├── math-underover-line-subscript.png │ ├── math-underover-line-superscript.png │ ├── math-underover-multiline-annotation.png │ ├── math-underover-parens.png │ ├── math-underover-shells.png │ ├── math-unicode.png │ ├── math-vec-align-explicit-alternating.png │ ├── math-vec-align.png │ ├── math-vec-delim-set.png │ ├── math-vec-gap.png │ ├── math-vec-linebreaks.png │ ├── math-vec-wide.png │ ├── math │ │ └── block-alignment.png │ ├── measure-citation-deeply-nested.png │ ├── measure-citation-in-flow.png │ ├── measure-counter-multiple-times.png │ ├── measure-counter-width.png │ ├── newline-continuation-code.png │ ├── newline-continuation-markup.png │ ├── numbering-chinese.png │ ├── numbering-hebrew.png │ ├── numbering-japanese-aiueo.png │ ├── numbering-japanese-iroha.png │ ├── numbering-korean.png │ ├── numbering-latin.png │ ├── numbering-symbol-and-roman.png │ ├── numbers.png │ ├── ops-add-content.png │ ├── ops-multiply-inf-with-length.png │ ├── outline-bookmark.png │ ├── outline-entry-complex.png │ ├── outline-entry-inner.png │ ├── outline-entry.png │ ├── outline-first-line-indent.png │ ├── outline-heading-start-of-page.png │ ├── outline-indent-auto-mixed-prefix-short.png │ ├── outline-indent-auto-mixed-prefix.png │ ├── outline-indent-auto-no-prefix.png │ ├── outline-indent-auto.png │ ├── outline-indent-fixed.png │ ├── outline-indent-func.png │ ├── outline-indent-no-numbering.png │ ├── outline-indent-numbering.png │ ├── outline-indent-zero.png │ ├── outline-par.png │ ├── outline-spacing.png │ ├── outline-styled-text.png │ ├── outline.png │ ├── overhang-lone.png │ ├── overhang.png │ ├── overline-background.png │ ├── pad-basic.png │ ├── pad-expanding-contents.png │ ├── pad-followed-by-content.png │ ├── page-call-followed-by-pagebreak.png │ ├── page-call-styled-empty.png │ ├── page-fill-none.png │ ├── page-fill.png │ ├── page-large.png │ ├── page-margin-binding-from-text-lang.png │ ├── page-margin-individual.png │ ├── page-margin-inside-outside-override.png │ ├── page-margin-inside-with-binding.png │ ├── page-margin-inside.png │ ├── page-margin-uniform.png │ ├── page-marginal-style-context.png │ ├── page-marginal-style-empty.png │ ├── page-marginal-style-page-call.png │ ├── page-marginal-style-shared-initial-interaction.png │ ├── page-marginal-style-show-rule-with-page-call.png │ ├── page-marginal-style-show-rule-with-pagebreak.png │ ├── page-marginal-style-show-rule-with-set-page.png │ ├── page-marginal-style-show-rule.png │ ├── page-marginal-style-text-call-around-page-call.png │ ├── page-marginal-style-text-call-around-pagebreak.png │ ├── page-marginal-style-text-call-around-set-page.png │ ├── page-marginal-style-text-call-code.png │ ├── page-marginal-style-text-call.png │ ├── page-marginal-style-text-set-first.png │ ├── page-marginal-style-text-set.png │ ├── page-marginals.png │ ├── page-number-align-bottom-left.png │ ├── page-number-align-top-right.png │ ├── page-numbering-pdf-label.png │ ├── page-set-empty.png │ ├── page-set-forces-break.png │ ├── page-set-only-pagebreak.png │ ├── page-set-override-and-mix.png │ ├── page-set-override-thrice.png │ ├── page-suppress-headers-and-footers.png │ ├── pagebreak-around-set-page.png │ ├── pagebreak-followed-by-page-call.png │ ├── pagebreak-meta.png │ ├── pagebreak-set-page-mixed.png │ ├── pagebreak-to-auto-sized.png │ ├── pagebreak-to-multiple-pages.png │ ├── pagebreak-to.png │ ├── pagebreak-weak-after-set-page.png │ ├── pagebreak-weak-meta.png │ ├── pagebreak-weak-place.png │ ├── pagebreak.png │ ├── par-basic.png │ ├── par-contains-block.png │ ├── par-contains-parbreak.png │ ├── par-explicit-trim-space.png │ ├── par-first-line-indent-all-enum.png │ ├── par-first-line-indent-all-list.png │ ├── par-first-line-indent-all-terms.png │ ├── par-first-line-indent-all.png │ ├── par-first-line-indent.png │ ├── par-hanging-indent-manual-linebreak.png │ ├── par-hanging-indent-rtl.png │ ├── par-hanging-indent-semantic.png │ ├── par-hanging-indent.png │ ├── par-leading-and-block-spacing.png │ ├── par-leading-and-spacing.png │ ├── par-metadata-after-trimmed-space.png │ ├── par-semantic-align.png │ ├── par-semantic-tag.png │ ├── par-semantic.png │ ├── par-show-children.png │ ├── par-show-styles.png │ ├── par-spacing-and-first-line-indent.png │ ├── par-trailing-whitespace.png │ ├── parser-backtracking-destructuring-whitespace.png │ ├── path.png │ ├── place-background.png │ ├── place-basic.png │ ├── place-block-spacing.png │ ├── place-bottom-in-box.png │ ├── place-bottom-right-in-box.png │ ├── place-float-align-auto.png │ ├── place-float-block-backlog.png │ ├── place-float-clearance-empty.png │ ├── place-float-column-align-auto.png │ ├── place-float-column-queued.png │ ├── place-float-columns.png │ ├── place-float-counter.png │ ├── place-float-delta.png │ ├── place-float-figure.png │ ├── place-float-flow-around.png │ ├── place-float-flow-size-alone.png │ ├── place-float-flow-size.png │ ├── place-float-fr.png │ ├── place-float-queued.png │ ├── place-float-rel-sizing.png │ ├── place-float-threecolumn-block-backlog.png │ ├── place-float-threecolumn.png │ ├── place-float-twocolumn-align-auto.png │ ├── place-float-twocolumn-fits-not.png │ ├── place-float-twocolumn-fits.png │ ├── place-float-twocolumn-queued.png │ ├── place-float-twocolumn.png │ ├── place-float.png │ ├── place-flush-figure.png │ ├── place-flush.png │ ├── place-horizon-in-boxes.png │ ├── place-top-left-in-box.png │ ├── polygon-line-join.png │ ├── polygon.png │ ├── query-and-or.png │ ├── query-before-after.png │ ├── query-complex.png │ ├── query-list-of-figures.png │ ├── query-quote.png │ ├── query-running-header.png │ ├── quote-block-spacing.png │ ├── quote-cite-format-author-date.png │ ├── quote-cite-format-label-or-numeric.png │ ├── quote-cite-format-note.png │ ├── quote-dir-align.png │ ├── quote-dir-author-pos.png │ ├── quote-inline.png │ ├── quote-nesting-custom.png │ ├── quote-nesting.png │ ├── quote-par.png │ ├── raw-align-default.png │ ├── raw-align-specified.png │ ├── raw-block-no-parbreaks.png │ ├── raw-consecutive-single-backticks.png │ ├── raw-dedent-empty-line.png │ ├── raw-dedent-first-line.png │ ├── raw-dedent-last-line.png │ ├── raw-empty-lines.png │ ├── raw-empty.png │ ├── raw-highlight-cpp.png │ ├── raw-highlight-html.png │ ├── raw-highlight-py.png │ ├── raw-highlight-rust.png │ ├── raw-highlight-typ.png │ ├── raw-highlight-typc.png │ ├── raw-highlight-typm.png │ ├── raw-highlight.png │ ├── raw-inline-multiline.png │ ├── raw-line-alternating-fill.png │ ├── raw-line-text-fill.png │ ├── raw-line.png │ ├── raw-more-backticks.png │ ├── raw-show-set.png │ ├── raw-single-backtick-lang.png │ ├── raw-syntaxes.png │ ├── raw-tab-size.png │ ├── raw-theme-set-to-auto.png │ ├── raw-theme-set-to-none.png │ ├── raw-theme.png │ ├── raw-trimming.png │ ├── raw-typst-lang.png │ ├── rect-customization.png │ ├── rect-fill-stroke.png │ ├── rect-size-beyond-default.png │ ├── rect-stroke.png │ ├── rect.png │ ├── ref-basic.png │ ├── ref-form-page-unambiguous.png │ ├── ref-form-page.png │ ├── ref-supplements.png │ ├── repeat-align-and-dir.png │ ├── repeat-basic.png │ ├── repeat-dots-rtl.png │ ├── repeat-empty.png │ ├── repeat-gap.png │ ├── repeat-no-justify-align.png │ ├── repeat-no-justify.png │ ├── repeat-unboxed.png │ ├── repr-color.png │ ├── repr-literals.png │ ├── repr-misc.png │ ├── repr-numerical.png │ ├── return-in-nested-content-block.png │ ├── set-if.png │ ├── set-instantiation-site-markup.png │ ├── set-instantiation-site.png │ ├── set-scoped-in-code-block.png │ ├── set-text-override.png │ ├── set-vs-construct-1.png │ ├── set-vs-construct-2.png │ ├── set-vs-construct-3.png │ ├── set-vs-construct-4.png │ ├── shaping-emoji-bad-zwj.png │ ├── shaping-emoji-basic.png │ ├── shaping-font-fallback.png │ ├── shaping-forced-script-font-feature-enabled.png │ ├── shaping-forced-script-font-feature-inhibited.png │ ├── shaping-script-separation.png │ ├── shorthand-dashes.png │ ├── shorthand-ellipsis.png │ ├── shorthand-minus.png │ ├── shorthand-nbsp-and-shy-hyphen.png │ ├── shorthand-nbsp-width.png │ ├── shorthands-math.png │ ├── show-bare-basic.png │ ├── show-bare-content-block.png │ ├── show-bare-replace-with-content.png │ ├── show-bare-vs-set-text.png │ ├── show-function-order-with-set.png │ ├── show-function-set-on-it.png │ ├── show-in-show.png │ ├── show-multiple-rules.png │ ├── show-nested-scopes.png │ ├── show-recursive-identity.png │ ├── show-recursive-multiple.png │ ├── show-rule-in-function.png │ ├── show-selector-basic.png │ ├── show-selector-discard.png │ ├── show-selector-element-or-label.png │ ├── show-selector-or-elements-with-set.png │ ├── show-selector-realistic.png │ ├── show-selector-replace-and-show-set.png │ ├── show-selector-replace.png │ ├── show-selector-where.png │ ├── show-set-on-layoutable-element.png │ ├── show-set-on-same-element.png │ ├── show-set-override.png │ ├── show-set-same-element-and-order.png │ ├── show-set-same-element-matched-field.png │ ├── show-set-same-element-matching-interaction.png │ ├── show-set-same-element-synthesized-matched-field.png │ ├── show-set-text-order-adjacent-1.png │ ├── show-set-text-order-adjacent-2.png │ ├── show-set-text-order-contained-1.png │ ├── show-set-text-order-contained-2.png │ ├── show-set-text-order-contained-3.png │ ├── show-set-text-order-contained-4.png │ ├── show-set-text-order-overlapping-1.png │ ├── show-set-text-order-overlapping-2.png │ ├── show-set-vs-construct.png │ ├── show-set-where-override.png │ ├── show-text-after-normal-show.png │ ├── show-text-apostrophe.png │ ├── show-text-basic.png │ ├── show-text-citation-smartquote.png │ ├── show-text-citation.png │ ├── show-text-cyclic-raw.png │ ├── show-text-cyclic.png │ ├── show-text-exactly-once.png │ ├── show-text-get-text-on-it.png │ ├── show-text-in-citation.png │ ├── show-text-in-other-show.png │ ├── show-text-indirectly-cyclic.png │ ├── show-text-line-wrapping.png │ ├── show-text-linebreak.png │ ├── show-text-list.png │ ├── show-text-outer-space.png │ ├── show-text-path-resolving.png │ ├── show-text-regex-case-insensitive.png │ ├── show-text-regex-character-class.png │ ├── show-text-regex-word-boundary.png │ ├── show-text-regex.png │ ├── show-text-smartquote.png │ ├── show-text-space-collapsing.png │ ├── show-text-style-boundary.png │ ├── show-text-within-par.png │ ├── show-where-folding-stroke.png │ ├── show-where-folding-text-size.png │ ├── show-where-optional-field-raw.png │ ├── show-where-optional-field-text.png │ ├── show-where-resolving-hyphenate.png │ ├── show-where-resolving-length.png │ ├── smallcaps-all.png │ ├── smallcaps-show-rule.png │ ├── smallcaps.png │ ├── smartquote-apostrophe.png │ ├── smartquote-bracket.png │ ├── smartquote-close-before-letter.png │ ├── smartquote-custom-complex.png │ ├── smartquote-custom.png │ ├── smartquote-de-ch.png │ ├── smartquote-de.png │ ├── smartquote-disable.png │ ├── smartquote-disabled-temporarily.png │ ├── smartquote-el.png │ ├── smartquote-empty.png │ ├── smartquote-es-mx.png │ ├── smartquote-es.png │ ├── smartquote-escape.png │ ├── smartquote-fi.png │ ├── smartquote-fr-ch.png │ ├── smartquote-fr.png │ ├── smartquote-he.png │ ├── smartquote-it.png │ ├── smartquote-la.png │ ├── smartquote-nesting.png │ ├── smartquote-prime.png │ ├── smartquote-ro.png │ ├── smartquote-ru.png │ ├── smartquote-slash.png │ ├── smartquote-with-embedding-chars.png │ ├── smartquote.png │ ├── space-collapsing-comments.png │ ├── space-collapsing-linebreaks.png │ ├── space-collapsing-stringy-linebreak.png │ ├── space-collapsing-with-h.png │ ├── space-collapsing.png │ ├── space-ideographic-kept.png │ ├── space-thin-kept.png │ ├── space-trailing-linebreak.png │ ├── spacing-h-and-v.png │ ├── spacing-rtl.png │ ├── square-auto-sized.png │ ├── square-base.png │ ├── square-circle-alignment.png │ ├── square-circle-overspecified.png │ ├── square-contents-overflow.png │ ├── square-height-limited-stack.png │ ├── square-height-limited.png │ ├── square-no-overflow.png │ ├── square-overflow-forced-height.png │ ├── square-overflow-forced-width.png │ ├── square-rect-rounded.png │ ├── square-relative-size.png │ ├── square-relatively-sized-child.png │ ├── square-size-beyond-default.png │ ├── square.png │ ├── stack-basic.png │ ├── stack-fr.png │ ├── stack-overflow.png │ ├── stack-rtl-align-and-fr.png │ ├── stack-spacing.png │ ├── state-basic.png │ ├── state-multiple-calls-same-key.png │ ├── state-nested.png │ ├── state-no-convergence.png │ ├── std-math.png │ ├── strike-background.png │ ├── strike-with.png │ ├── stroke-composition.png │ ├── stroke-folding.png │ ├── stroke-text.png │ ├── stroke-zero-thickness.png │ ├── strong-delta.png │ ├── strong-double-star-empty-hint.png │ ├── sub-super-non-typographic.png │ ├── sub-super.png │ ├── super-underline.png │ ├── symbol-constructor.png │ ├── symbol-sect-deprecated.png │ ├── symbol.png │ ├── table-align-array.png │ ├── table-cell-align-override.png │ ├── table-cell-folding.png │ ├── table-cell-override.png │ ├── table-cell-par.png │ ├── table-cell-set.png │ ├── table-cell-show-and-override.png │ ├── table-cell-show-based-on-position.png │ ├── table-cell-show-emph.png │ ├── table-cell-show.png │ ├── table-cell-various-overrides.png │ ├── table-contextual-measurement.png │ ├── table-fill-basic.png │ ├── table-gutters.png │ ├── table-header-citation.png │ ├── table-header-counter.png │ ├── table-header-footer-madness.png │ ├── table-inset-fold.png │ ├── table-inset.png │ ├── table-newlines.png │ ├── table-stroke-vline-position-left-and-right.png │ ├── terms-built-in-loop.png │ ├── terms-constructor.png │ ├── terms-grid.png │ ├── terms-multiline.png │ ├── terms-par.png │ ├── terms-rtl.png │ ├── terms-style-change-interrupted.png │ ├── terms-syntax-edge-cases.png │ ├── text-alternates-and-stylistic-sets.png │ ├── text-call-body.png │ ├── text-chinese-basic.png │ ├── text-cjk-latin-spacing.png │ ├── text-copy-paste-ligatures.png │ ├── text-edge.png │ ├── text-features.png │ ├── text-font-change-after-space.png │ ├── text-font-covers-chinese.png │ ├── text-font-covers-numbers.png │ ├── text-font-just-a-space.png │ ├── text-font-properties.png │ ├── text-kerning.png │ ├── text-lang-hyphenate.png │ ├── text-lang-region.png │ ├── text-lang-script-shaping.png │ ├── text-lang-shaping.png │ ├── text-lang-unknown-region.png │ ├── text-lang.png │ ├── text-language-fallback-english.png │ ├── text-ligatures.png │ ├── text-number-type.png │ ├── text-number-width.png │ ├── text-size-em-nesting.png │ ├── text-size-em.png │ ├── text-slashed-zero-and-fractions.png │ ├── text-spacing-relative.png │ ├── text-spacing.png │ ├── text-tracking-arabic.png │ ├── text-tracking-changed-temporarily.png │ ├── text-tracking-mark-placement.png │ ├── text-tracking-negative.png │ ├── text-unknown-font-family-warning.png │ ├── tiling-line.png │ ├── tiling-lines.png │ ├── tiling-pattern-compatibility.png │ ├── tiling-relative-parent.png │ ├── tiling-relative-self.png │ ├── tiling-small.png │ ├── tiling-spacing-negative.png │ ├── tiling-spacing-positive.png │ ├── tiling-spacing-zero.png │ ├── tiling-stroke-relative-parent.png │ ├── tiling-stroke.png │ ├── tiling-text.png │ ├── transform-rotate-and-scale.png │ ├── transform-rotate-origin.png │ ├── transform-rotate-relative-sizing.png │ ├── transform-rotate.png │ ├── transform-scale-abs-and-auto.png │ ├── transform-scale-origin.png │ ├── transform-scale-relative-sizing.png │ ├── transform-scale.png │ ├── transform-skew-both-axes.png │ ├── transform-skew-origin.png │ ├── transform-skew-relative-sizing.png │ ├── transform-skew.png │ ├── transform-tex-logo.png │ ├── trim-weak-space-line-beginning.png │ ├── trim-weak-space-line-end.png │ ├── underline-background.png │ ├── underline-overline-strike.png │ ├── underline-stroke-folding.png │ └── while-loop-basic.png ├── skip.txt ├── src │ ├── args.rs │ ├── benches.rs │ ├── collect.rs │ ├── custom.rs │ ├── logger.rs │ ├── run.rs │ ├── tests.rs │ └── world.rs └── suite │ ├── foundations │ ├── arguments.typ │ ├── array.typ │ ├── assert.typ │ ├── bytes.typ │ ├── calc.typ │ ├── content.typ │ ├── context.typ │ ├── datetime.typ │ ├── decimal.typ │ ├── dict.typ │ ├── duration.typ │ ├── eval.typ │ ├── float.typ │ ├── int.typ │ ├── label.typ │ ├── panic.typ │ ├── plugin.typ │ ├── repr.typ │ ├── std.typ │ ├── str.typ │ ├── type.typ │ └── version.typ │ ├── html │ └── elem.typ │ ├── introspection │ ├── counter.typ │ ├── here.typ │ ├── locate.typ │ ├── query.typ │ └── state.typ │ ├── layout │ ├── align.typ │ ├── angle.typ │ ├── clip.typ │ ├── columns.typ │ ├── container.typ │ ├── dir.typ │ ├── flow │ │ ├── flow.typ │ │ ├── footnote.typ │ │ ├── invisibles.typ │ │ ├── orphan.typ │ │ └── place.typ │ ├── grid │ │ ├── cell.typ │ │ ├── colspan.typ │ │ ├── footers.typ │ │ ├── grid.typ │ │ ├── headers.typ │ │ ├── html.typ │ │ ├── positioning.typ │ │ ├── rowspan.typ │ │ ├── rtl.typ │ │ ├── stroke.typ │ │ └── styling.typ │ ├── hide.typ │ ├── inline │ │ ├── baseline.typ │ │ ├── bidi.typ │ │ ├── cjk.typ │ │ ├── hyphenate.typ │ │ ├── justify.typ │ │ ├── linebreak.typ │ │ ├── overhang.typ │ │ ├── shaping.typ │ │ └── text.typ │ ├── layout.typ │ ├── length.typ │ ├── limits.typ │ ├── line-numbers.typ │ ├── measure.typ │ ├── pad.typ │ ├── page.typ │ ├── pagebreak.typ │ ├── place.typ │ ├── relative.typ │ ├── repeat.typ │ ├── spacing.typ │ ├── stack.typ │ ├── table.typ │ └── transform.typ │ ├── loading │ ├── cbor.typ │ ├── csv.typ │ ├── json.typ │ ├── read.typ │ ├── toml.typ │ ├── xml.typ │ └── yaml.typ │ ├── math │ ├── accent.typ │ ├── alignment.typ │ ├── attach.typ │ ├── call.typ │ ├── cancel.typ │ ├── cases.typ │ ├── class.typ │ ├── delimited.typ │ ├── equation.typ │ ├── frac.typ │ ├── interactions.typ │ ├── mat.typ │ ├── multiline.typ │ ├── op.typ │ ├── primes.typ │ ├── root.typ │ ├── size.typ │ ├── spacing.typ │ ├── stretch.typ │ ├── style.typ │ ├── symbols.typ │ ├── syntax.typ │ ├── text.typ │ ├── underover.typ │ └── vec.typ │ ├── model │ ├── bibliography.typ │ ├── cite.typ │ ├── document.typ │ ├── emph-strong.typ │ ├── enum.typ │ ├── figure.typ │ ├── footnote.typ │ ├── heading.typ │ ├── link.typ │ ├── list.typ │ ├── numbering.typ │ ├── outline.typ │ ├── par.typ │ ├── quote.typ │ ├── ref.typ │ └── terms.typ │ ├── pdf │ └── embed.typ │ ├── playground.typ │ ├── scripting │ ├── blocks.typ │ ├── call.typ │ ├── closure.typ │ ├── destructuring.typ │ ├── field.typ │ ├── for.typ │ ├── get-rule.typ │ ├── if.typ │ ├── import.typ │ ├── include.typ │ ├── let.typ │ ├── loop.typ │ ├── methods.typ │ ├── module.typ │ ├── modules │ │ ├── chap1.typ │ │ ├── chap2.typ │ │ ├── cycle1.typ │ │ ├── cycle2.typ │ │ └── with space.typ │ ├── ops.typ │ ├── params.typ │ ├── recursion.typ │ ├── return.typ │ └── while.typ │ ├── styling │ ├── fold.typ │ ├── set.typ │ ├── show-set.typ │ ├── show-text.typ │ ├── show-where.typ │ └── show.typ │ ├── symbols │ └── symbol.typ │ ├── syntax │ ├── backtracking.typ │ ├── bugs.typ │ ├── comment.typ │ ├── embedded.typ │ ├── escape.typ │ ├── newlines.typ │ ├── numbers.typ │ ├── shebang.typ │ └── shorthand.typ │ ├── text │ ├── case.typ │ ├── coma.typ │ ├── copy-paste.typ │ ├── deco.typ │ ├── edge.typ │ ├── em.typ │ ├── font.typ │ ├── lang.typ │ ├── lorem.typ │ ├── raw.typ │ ├── shift.typ │ ├── smallcaps.typ │ ├── smartquote.typ │ └── space.typ │ └── visualize │ ├── circle.typ │ ├── color.typ │ ├── curve.typ │ ├── ellipse.typ │ ├── gradient.typ │ ├── image.typ │ ├── line.typ │ ├── path.typ │ ├── polygon.typ │ ├── rect.typ │ ├── square.typ │ ├── stroke.typ │ └── tiling.typ ├── tools ├── support │ ├── README.md │ ├── config.json │ ├── package.json │ └── typst.tmLanguage.json └── test-helper │ ├── README.md │ ├── images │ ├── open-dark.svg │ ├── open-light.svg │ ├── refresh-dark.svg │ ├── refresh-light.svg │ ├── rerun-dark.svg │ ├── rerun-light.svg │ ├── update-dark.svg │ └── update-light.svg │ ├── package.json │ ├── src │ └── extension.ts │ └── tsconfig.json ├── translate.py ├── tsconfig.json └── website ├── .editorconfig ├── README.md ├── favicon.png ├── metadata.json └── translation-status.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- 1 | https://typst.app/funding.json 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @kimushun1101 @ultimatile @3w36zj6 @gomazarashi 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [typst] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/forum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/workflows/forum.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.textlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.textlintignore -------------------------------------------------------------------------------- /.textlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.textlintrc.js -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/NOTICE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/TRANSLATING_GUIDELINES.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/bun.lock -------------------------------------------------------------------------------- /crates/typst-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/build.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/args.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/compile.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/download.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/fonts.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/greet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/greet.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/init.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/main.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/package.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/query.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/server.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/terminal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/terminal.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/timings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/timings.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/tracing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/tracing.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/update.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/watch.rs -------------------------------------------------------------------------------- /crates/typst-cli/src/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-cli/src/world.rs -------------------------------------------------------------------------------- /crates/typst-eval/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-eval/src/access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/access.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/binding.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/call.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/code.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/flow.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/import.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/markup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/markup.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/math.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/methods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/methods.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/ops.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/rules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/rules.rs -------------------------------------------------------------------------------- /crates/typst-eval/src/vm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-eval/src/vm.rs -------------------------------------------------------------------------------- /crates/typst-html/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-html/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-html/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-html/src/encode.rs -------------------------------------------------------------------------------- /crates/typst-html/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-html/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-ide/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-ide/src/analyze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/analyze.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/complete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/complete.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/definition.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/jump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/jump.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/matchers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/matchers.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/tests.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/tooltip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/tooltip.rs -------------------------------------------------------------------------------- /crates/typst-ide/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-ide/src/utils.rs -------------------------------------------------------------------------------- /crates/typst-kit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-kit/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-kit/src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-kit/src/download.rs -------------------------------------------------------------------------------- /crates/typst-kit/src/fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-kit/src/fonts.rs -------------------------------------------------------------------------------- /crates/typst-kit/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-kit/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-kit/src/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-kit/src/package.rs -------------------------------------------------------------------------------- /crates/typst-layout/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-layout/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/image.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/lists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/lists.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/math/lr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/math/lr.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/pad.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/pad.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/repeat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/repeat.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/shapes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/shapes.rs -------------------------------------------------------------------------------- /crates/typst-layout/src/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-layout/src/stack.rs -------------------------------------------------------------------------------- /crates/typst-library/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-library/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-library/src/diag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-library/src/diag.rs -------------------------------------------------------------------------------- /crates/typst-library/src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-library/src/engine.rs -------------------------------------------------------------------------------- /crates/typst-library/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-library/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-macros/src/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/cast.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/elem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/elem.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/func.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/scope.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/time.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/ty.rs -------------------------------------------------------------------------------- /crates/typst-macros/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-macros/src/util.rs -------------------------------------------------------------------------------- /crates/typst-pdf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-pdf/src/catalog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/catalog.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/color.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/color_font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/color_font.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/content.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/embed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/embed.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/extg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/extg.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/font.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/gradient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/gradient.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/image.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/outline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/outline.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/page.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/resources.rs -------------------------------------------------------------------------------- /crates/typst-pdf/src/tiling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-pdf/src/tiling.rs -------------------------------------------------------------------------------- /crates/typst-realize/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-realize/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-realize/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-realize/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-render/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-render/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-render/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-render/src/image.rs -------------------------------------------------------------------------------- /crates/typst-render/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-render/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-render/src/paint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-render/src/paint.rs -------------------------------------------------------------------------------- /crates/typst-render/src/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-render/src/shape.rs -------------------------------------------------------------------------------- /crates/typst-render/src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-render/src/text.rs -------------------------------------------------------------------------------- /crates/typst-svg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-svg/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-svg/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-svg/src/image.rs -------------------------------------------------------------------------------- /crates/typst-svg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-svg/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-svg/src/paint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-svg/src/paint.rs -------------------------------------------------------------------------------- /crates/typst-svg/src/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-svg/src/shape.rs -------------------------------------------------------------------------------- /crates/typst-svg/src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-svg/src/text.rs -------------------------------------------------------------------------------- /crates/typst-syntax/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/README.md -------------------------------------------------------------------------------- /crates/typst-syntax/src/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/ast.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/file.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/kind.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/lexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/lexer.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/node.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/package.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/parser.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/path.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/set.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/source.rs -------------------------------------------------------------------------------- /crates/typst-syntax/src/span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-syntax/src/span.rs -------------------------------------------------------------------------------- /crates/typst-timing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-timing/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-timing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-timing/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/typst-utils/src/bitset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/bitset.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/deferred.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/deferred.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/duration.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/fat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/fat.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/hash.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/lib.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/macros.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/pico.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/pico.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/round.rs -------------------------------------------------------------------------------- /crates/typst-utils/src/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst-utils/src/scalar.rs -------------------------------------------------------------------------------- /crates/typst/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst/Cargo.toml -------------------------------------------------------------------------------- /crates/typst/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/crates/typst/src/lib.rs -------------------------------------------------------------------------------- /docs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/Cargo.toml -------------------------------------------------------------------------------- /docs/changelog/0.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.1.0.md -------------------------------------------------------------------------------- /docs/changelog/0.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.10.0.md -------------------------------------------------------------------------------- /docs/changelog/0.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.11.0.md -------------------------------------------------------------------------------- /docs/changelog/0.11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.11.1.md -------------------------------------------------------------------------------- /docs/changelog/0.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.12.0.md -------------------------------------------------------------------------------- /docs/changelog/0.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.13.0.md -------------------------------------------------------------------------------- /docs/changelog/0.13.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.13.1.md -------------------------------------------------------------------------------- /docs/changelog/0.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.2.0.md -------------------------------------------------------------------------------- /docs/changelog/0.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.3.0.md -------------------------------------------------------------------------------- /docs/changelog/0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.4.0.md -------------------------------------------------------------------------------- /docs/changelog/0.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.5.0.md -------------------------------------------------------------------------------- /docs/changelog/0.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.6.0.md -------------------------------------------------------------------------------- /docs/changelog/0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.7.0.md -------------------------------------------------------------------------------- /docs/changelog/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.8.0.md -------------------------------------------------------------------------------- /docs/changelog/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/0.9.0.md -------------------------------------------------------------------------------- /docs/changelog/earlier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/earlier.md -------------------------------------------------------------------------------- /docs/changelog/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/changelog/welcome.md -------------------------------------------------------------------------------- /docs/dev/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/dev/architecture.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/guides/page-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/guides/page-setup.md -------------------------------------------------------------------------------- /docs/guides/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/guides/tables.md -------------------------------------------------------------------------------- /docs/guides/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/guides/welcome.md -------------------------------------------------------------------------------- /docs/japanese/articles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/japanese/articles.md -------------------------------------------------------------------------------- /docs/japanese/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/japanese/packages.md -------------------------------------------------------------------------------- /docs/japanese/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/japanese/templates.md -------------------------------------------------------------------------------- /docs/japanese/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/japanese/welcome.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/reference/export/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/export/html.md -------------------------------------------------------------------------------- /docs/reference/export/pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/export/pdf.md -------------------------------------------------------------------------------- /docs/reference/export/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/export/png.md -------------------------------------------------------------------------------- /docs/reference/export/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/export/svg.md -------------------------------------------------------------------------------- /docs/reference/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/groups.yml -------------------------------------------------------------------------------- /docs/reference/library/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/library/layout.md -------------------------------------------------------------------------------- /docs/reference/library/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/library/math.md -------------------------------------------------------------------------------- /docs/reference/library/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/library/model.md -------------------------------------------------------------------------------- /docs/reference/library/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/library/text.md -------------------------------------------------------------------------------- /docs/reference/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/reference/welcome.md -------------------------------------------------------------------------------- /docs/src/contribs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/src/contribs.rs -------------------------------------------------------------------------------- /docs/src/html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/src/html.rs -------------------------------------------------------------------------------- /docs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/src/lib.rs -------------------------------------------------------------------------------- /docs/src/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/src/link.rs -------------------------------------------------------------------------------- /docs/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/src/main.rs -------------------------------------------------------------------------------- /docs/src/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/src/model.rs -------------------------------------------------------------------------------- /docs/tutorial/1-writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/tutorial/1-writing.md -------------------------------------------------------------------------------- /docs/tutorial/2-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/tutorial/2-formatting.md -------------------------------------------------------------------------------- /docs/tutorial/3-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/tutorial/3-advanced.md -------------------------------------------------------------------------------- /docs/tutorial/4-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/tutorial/4-template.md -------------------------------------------------------------------------------- /docs/tutorial/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/docs/tutorial/welcome.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/flake.nix -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/package.json -------------------------------------------------------------------------------- /prh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/prh.yaml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /tests/.gitattributes: -------------------------------------------------------------------------------- 1 | *.html text eol=lf 2 | -------------------------------------------------------------------------------- /tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/Cargo.toml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/fuzz/Cargo.toml -------------------------------------------------------------------------------- /tests/fuzz/src/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/fuzz/src/compile.rs -------------------------------------------------------------------------------- /tests/fuzz/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/fuzz/src/parse.rs -------------------------------------------------------------------------------- /tests/packages/adder-0.1.0/lib.typ: -------------------------------------------------------------------------------- 1 | #let add(x, y) = x + y 2 | -------------------------------------------------------------------------------- /tests/packages/future-0.1.0/lib.typ: -------------------------------------------------------------------------------- 1 | #future 2 | -------------------------------------------------------------------------------- /tests/ref/align-in-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/align-in-stack.png -------------------------------------------------------------------------------- /tests/ref/align-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/align-right.png -------------------------------------------------------------------------------- /tests/ref/array-basic-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/array-basic-syntax.png -------------------------------------------------------------------------------- /tests/ref/array-join-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/array-join-content.png -------------------------------------------------------------------------------- /tests/ref/baseline-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/baseline-box.png -------------------------------------------------------------------------------- /tests/ref/baseline-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/baseline-text.png -------------------------------------------------------------------------------- /tests/ref/bibliography-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bibliography-basic.png -------------------------------------------------------------------------------- /tests/ref/bibliography-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bibliography-full.png -------------------------------------------------------------------------------- /tests/ref/bibliography-math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bibliography-math.png -------------------------------------------------------------------------------- /tests/ref/bidi-explicit-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bidi-explicit-dir.png -------------------------------------------------------------------------------- /tests/ref/bidi-nesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bidi-nesting.png -------------------------------------------------------------------------------- /tests/ref/bidi-obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bidi-obj.png -------------------------------------------------------------------------------- /tests/ref/bidi-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bidi-raw.png -------------------------------------------------------------------------------- /tests/ref/bidi-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/bidi-spacing.png -------------------------------------------------------------------------------- /tests/ref/block-box-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-box-fill.png -------------------------------------------------------------------------------- /tests/ref/block-clip-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-clip-text.png -------------------------------------------------------------------------------- /tests/ref/block-fixed-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-fixed-height.png -------------------------------------------------------------------------------- /tests/ref/block-fr-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-fr-height.png -------------------------------------------------------------------------------- /tests/ref/block-sizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-sizing.png -------------------------------------------------------------------------------- /tests/ref/block-sticky-alone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-sticky-alone.png -------------------------------------------------------------------------------- /tests/ref/block-sticky-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-sticky-many.png -------------------------------------------------------------------------------- /tests/ref/block-sticky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/block-sticky.png -------------------------------------------------------------------------------- /tests/ref/box-clip-outset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/box-clip-outset.png -------------------------------------------------------------------------------- /tests/ref/box-clip-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/box-clip-radius.png -------------------------------------------------------------------------------- /tests/ref/box-clip-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/box-clip-rect.png -------------------------------------------------------------------------------- /tests/ref/box-fr-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/box-fr-width.png -------------------------------------------------------------------------------- /tests/ref/box-width-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/box-width-fr.png -------------------------------------------------------------------------------- /tests/ref/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/box.png -------------------------------------------------------------------------------- /tests/ref/call-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/call-basic.png -------------------------------------------------------------------------------- /tests/ref/cases-content-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/cases-content-text.png -------------------------------------------------------------------------------- /tests/ref/circle-auto-sizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/circle-auto-sizing.png -------------------------------------------------------------------------------- /tests/ref/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/circle.png -------------------------------------------------------------------------------- /tests/ref/cite-footnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/cite-footnote.png -------------------------------------------------------------------------------- /tests/ref/cite-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/cite-form.png -------------------------------------------------------------------------------- /tests/ref/cite-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/cite-group.png -------------------------------------------------------------------------------- /tests/ref/colbreak-weak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/colbreak-weak.png -------------------------------------------------------------------------------- /tests/ref/color-cmyk-ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/color-cmyk-ops.png -------------------------------------------------------------------------------- /tests/ref/color-luma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/color-luma.png -------------------------------------------------------------------------------- /tests/ref/color-rotate-hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/color-rotate-hue.png -------------------------------------------------------------------------------- /tests/ref/color-saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/color-saturation.png -------------------------------------------------------------------------------- /tests/ref/color-spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/color-spaces.png -------------------------------------------------------------------------------- /tests/ref/columns-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/columns-one.png -------------------------------------------------------------------------------- /tests/ref/columns-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/columns-rtl.png -------------------------------------------------------------------------------- /tests/ref/columns-set-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/columns-set-page.png -------------------------------------------------------------------------------- /tests/ref/coma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/coma.png -------------------------------------------------------------------------------- /tests/ref/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/comments.png -------------------------------------------------------------------------------- /tests/ref/costs-runt-allow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/costs-runt-allow.png -------------------------------------------------------------------------------- /tests/ref/costs-runt-avoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/costs-runt-avoid.png -------------------------------------------------------------------------------- /tests/ref/costs-widow-orphan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/costs-widow-orphan.png -------------------------------------------------------------------------------- /tests/ref/counter-basic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/counter-basic-1.png -------------------------------------------------------------------------------- /tests/ref/counter-figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/counter-figure.png -------------------------------------------------------------------------------- /tests/ref/counter-heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/counter-heading.png -------------------------------------------------------------------------------- /tests/ref/counter-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/counter-label.png -------------------------------------------------------------------------------- /tests/ref/counter-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/counter-page.png -------------------------------------------------------------------------------- /tests/ref/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/csv.png -------------------------------------------------------------------------------- /tests/ref/curve-close-smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/curve-close-smooth.png -------------------------------------------------------------------------------- /tests/ref/curve-cubic-mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/curve-cubic-mirror.png -------------------------------------------------------------------------------- /tests/ref/curve-fill-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/curve-fill-rule.png -------------------------------------------------------------------------------- /tests/ref/curve-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/curve-line.png -------------------------------------------------------------------------------- /tests/ref/curve-move-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/curve-move-single.png -------------------------------------------------------------------------------- /tests/ref/curve-quad-mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/curve-quad-mirror.png -------------------------------------------------------------------------------- /tests/ref/decimal-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/decimal-display.png -------------------------------------------------------------------------------- /tests/ref/dict-basic-methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/dict-basic-methods.png -------------------------------------------------------------------------------- /tests/ref/dict-basic-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/dict-basic-syntax.png -------------------------------------------------------------------------------- /tests/ref/dict-remove-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/dict-remove-order.png -------------------------------------------------------------------------------- /tests/ref/document-set-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/document-set-title.png -------------------------------------------------------------------------------- /tests/ref/double-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/double-percent.png -------------------------------------------------------------------------------- /tests/ref/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/ellipse.png -------------------------------------------------------------------------------- /tests/ref/emph-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/emph-syntax.png -------------------------------------------------------------------------------- /tests/ref/enum-built-in-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/enum-built-in-loop.png -------------------------------------------------------------------------------- /tests/ref/enum-function-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/enum-function-call.png -------------------------------------------------------------------------------- /tests/ref/enum-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/enum-par.png -------------------------------------------------------------------------------- /tests/ref/escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/escape.png -------------------------------------------------------------------------------- /tests/ref/eval-in-show-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/eval-in-show-rule.png -------------------------------------------------------------------------------- /tests/ref/eval-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/eval-mode.png -------------------------------------------------------------------------------- /tests/ref/eval-path-resolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/eval-path-resolve.png -------------------------------------------------------------------------------- /tests/ref/field-function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/field-function.png -------------------------------------------------------------------------------- /tests/ref/figure-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-align.png -------------------------------------------------------------------------------- /tests/ref/figure-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-basic.png -------------------------------------------------------------------------------- /tests/ref/figure-breakable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-breakable.png -------------------------------------------------------------------------------- /tests/ref/figure-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-par.png -------------------------------------------------------------------------------- /tests/ref/figure-placement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-placement.png -------------------------------------------------------------------------------- /tests/ref/figure-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-table.png -------------------------------------------------------------------------------- /tests/ref/figure-theorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/figure-theorem.png -------------------------------------------------------------------------------- /tests/ref/float-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/float-display.png -------------------------------------------------------------------------------- /tests/ref/float-repr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/float-repr.png -------------------------------------------------------------------------------- /tests/ref/flow-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/flow-fr.png -------------------------------------------------------------------------------- /tests/ref/flow-widow-forced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/flow-widow-forced.png -------------------------------------------------------------------------------- /tests/ref/footnote-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-basic.png -------------------------------------------------------------------------------- /tests/ref/footnote-block-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-block-fr.png -------------------------------------------------------------------------------- /tests/ref/footnote-duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-duplicate.png -------------------------------------------------------------------------------- /tests/ref/footnote-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-entry.png -------------------------------------------------------------------------------- /tests/ref/footnote-in-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-in-list.png -------------------------------------------------------------------------------- /tests/ref/footnote-in-place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-in-place.png -------------------------------------------------------------------------------- /tests/ref/footnote-in-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-in-table.png -------------------------------------------------------------------------------- /tests/ref/footnote-invariant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-invariant.png -------------------------------------------------------------------------------- /tests/ref/footnote-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-nested.png -------------------------------------------------------------------------------- /tests/ref/footnote-ref-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-ref-call.png -------------------------------------------------------------------------------- /tests/ref/footnote-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-ref.png -------------------------------------------------------------------------------- /tests/ref/footnote-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/footnote-styling.png -------------------------------------------------------------------------------- /tests/ref/for-loop-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/for-loop-basic.png -------------------------------------------------------------------------------- /tests/ref/gradient-conic-hsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-conic-hsl.png -------------------------------------------------------------------------------- /tests/ref/gradient-conic-hsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-conic-hsv.png -------------------------------------------------------------------------------- /tests/ref/gradient-conic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-conic.png -------------------------------------------------------------------------------- /tests/ref/gradient-math-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-math-dir.png -------------------------------------------------------------------------------- /tests/ref/gradient-math-frac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-math-frac.png -------------------------------------------------------------------------------- /tests/ref/gradient-math-mat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-math-mat.png -------------------------------------------------------------------------------- /tests/ref/gradient-math-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-math-misc.png -------------------------------------------------------------------------------- /tests/ref/gradient-math-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-math-root.png -------------------------------------------------------------------------------- /tests/ref/gradient-presets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-presets.png -------------------------------------------------------------------------------- /tests/ref/gradient-repr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-repr.png -------------------------------------------------------------------------------- /tests/ref/gradient-text-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/gradient-text-dir.png -------------------------------------------------------------------------------- /tests/ref/grid-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-align.png -------------------------------------------------------------------------------- /tests/ref/grid-auto-shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-auto-shrink.png -------------------------------------------------------------------------------- /tests/ref/grid-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-calendar.png -------------------------------------------------------------------------------- /tests/ref/grid-cell-breaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-cell-breaking.png -------------------------------------------------------------------------------- /tests/ref/grid-cell-folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-cell-folding.png -------------------------------------------------------------------------------- /tests/ref/grid-cell-override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-cell-override.png -------------------------------------------------------------------------------- /tests/ref/grid-cell-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-cell-set.png -------------------------------------------------------------------------------- /tests/ref/grid-cell-show-x-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-cell-show-x-y.png -------------------------------------------------------------------------------- /tests/ref/grid-cell-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-cell-show.png -------------------------------------------------------------------------------- /tests/ref/grid-colspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-colspan.png -------------------------------------------------------------------------------- /tests/ref/grid-complete-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-complete-rows.png -------------------------------------------------------------------------------- /tests/ref/grid-exam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-exam.png -------------------------------------------------------------------------------- /tests/ref/grid-fill-func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-fill-func.png -------------------------------------------------------------------------------- /tests/ref/grid-finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-finance.png -------------------------------------------------------------------------------- /tests/ref/grid-footer-bare-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-footer-bare-1.png -------------------------------------------------------------------------------- /tests/ref/grid-footer-bare-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-footer-bare-2.png -------------------------------------------------------------------------------- /tests/ref/grid-footer-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-footer-expand.png -------------------------------------------------------------------------------- /tests/ref/grid-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-footer.png -------------------------------------------------------------------------------- /tests/ref/grid-funcs-gutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-funcs-gutter.png -------------------------------------------------------------------------------- /tests/ref/grid-gutter-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-gutter-fr.png -------------------------------------------------------------------------------- /tests/ref/grid-header-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-header-empty.png -------------------------------------------------------------------------------- /tests/ref/grid-header-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-header-expand.png -------------------------------------------------------------------------------- /tests/ref/grid-header-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-header-nested.png -------------------------------------------------------------------------------- /tests/ref/grid-headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-headers.png -------------------------------------------------------------------------------- /tests/ref/grid-inset-folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-inset-folding.png -------------------------------------------------------------------------------- /tests/ref/grid-inset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-inset.png -------------------------------------------------------------------------------- /tests/ref/grid-rowspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-rowspan.png -------------------------------------------------------------------------------- /tests/ref/grid-rtl-colspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-rtl-colspan.png -------------------------------------------------------------------------------- /tests/ref/grid-rtl-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-rtl-complex.png -------------------------------------------------------------------------------- /tests/ref/grid-rtl-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-rtl-header.png -------------------------------------------------------------------------------- /tests/ref/grid-rtl-rowspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-rtl-rowspan.png -------------------------------------------------------------------------------- /tests/ref/grid-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-rtl.png -------------------------------------------------------------------------------- /tests/ref/grid-stroke-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-stroke-array.png -------------------------------------------------------------------------------- /tests/ref/grid-stroke-func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-stroke-func.png -------------------------------------------------------------------------------- /tests/ref/grid-stroke-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-stroke-none.png -------------------------------------------------------------------------------- /tests/ref/grid-stroke-tiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/grid-stroke-tiling.png -------------------------------------------------------------------------------- /tests/ref/heading-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/heading-basic.png -------------------------------------------------------------------------------- /tests/ref/heading-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/heading-block.png -------------------------------------------------------------------------------- /tests/ref/heading-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/heading-offset.png -------------------------------------------------------------------------------- /tests/ref/heading-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/heading-par.png -------------------------------------------------------------------------------- /tests/ref/heading-show-where.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/heading-show-where.png -------------------------------------------------------------------------------- /tests/ref/hide-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-image.png -------------------------------------------------------------------------------- /tests/ref/hide-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-line.png -------------------------------------------------------------------------------- /tests/ref/hide-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-list.png -------------------------------------------------------------------------------- /tests/ref/hide-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-polygon.png -------------------------------------------------------------------------------- /tests/ref/hide-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-rect.png -------------------------------------------------------------------------------- /tests/ref/hide-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-table.png -------------------------------------------------------------------------------- /tests/ref/hide-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hide-text.png -------------------------------------------------------------------------------- /tests/ref/highlight-bounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/highlight-bounds.png -------------------------------------------------------------------------------- /tests/ref/highlight-edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/highlight-edges.png -------------------------------------------------------------------------------- /tests/ref/highlight-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/highlight-radius.png -------------------------------------------------------------------------------- /tests/ref/highlight-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/highlight-stroke.png -------------------------------------------------------------------------------- /tests/ref/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/highlight.png -------------------------------------------------------------------------------- /tests/ref/html/basic-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/basic-table.html -------------------------------------------------------------------------------- /tests/ref/html/block-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/block-html.html -------------------------------------------------------------------------------- /tests/ref/html/box-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/box-html.html -------------------------------------------------------------------------------- /tests/ref/html/enum-par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/enum-par.html -------------------------------------------------------------------------------- /tests/ref/html/enum-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/enum-start.html -------------------------------------------------------------------------------- /tests/ref/html/link-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/link-basic.html -------------------------------------------------------------------------------- /tests/ref/html/list-par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/list-par.html -------------------------------------------------------------------------------- /tests/ref/html/quote-plato.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/quote-plato.html -------------------------------------------------------------------------------- /tests/ref/html/terms-par.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/html/terms-par.html -------------------------------------------------------------------------------- /tests/ref/hyphenate-shy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hyphenate-shy.png -------------------------------------------------------------------------------- /tests/ref/hyphenate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/hyphenate.png -------------------------------------------------------------------------------- /tests/ref/if-markup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/if-markup.png -------------------------------------------------------------------------------- /tests/ref/image-decode-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-decode-svg.png -------------------------------------------------------------------------------- /tests/ref/image-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-fit.png -------------------------------------------------------------------------------- /tests/ref/image-jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-jpg.png -------------------------------------------------------------------------------- /tests/ref/image-pixmap-luma8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-pixmap-luma8.png -------------------------------------------------------------------------------- /tests/ref/image-pixmap-rgb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-pixmap-rgb8.png -------------------------------------------------------------------------------- /tests/ref/image-pixmap-rgba8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-pixmap-rgba8.png -------------------------------------------------------------------------------- /tests/ref/image-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-png.png -------------------------------------------------------------------------------- /tests/ref/image-sizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-sizing.png -------------------------------------------------------------------------------- /tests/ref/image-svg-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-svg-complex.png -------------------------------------------------------------------------------- /tests/ref/image-svg-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/image-svg-text.png -------------------------------------------------------------------------------- /tests/ref/import-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/import-basic.png -------------------------------------------------------------------------------- /tests/ref/include-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/include-file.png -------------------------------------------------------------------------------- /tests/ref/int-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/int-display.png -------------------------------------------------------------------------------- /tests/ref/int-repr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/int-repr.png -------------------------------------------------------------------------------- /tests/ref/issue-3733-dpi-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/issue-3733-dpi-svg.png -------------------------------------------------------------------------------- /tests/ref/issue-4087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/issue-4087.png -------------------------------------------------------------------------------- /tests/ref/issue-852-mat-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/issue-852-mat-type.png -------------------------------------------------------------------------------- /tests/ref/issue-grid-skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/issue-grid-skip.png -------------------------------------------------------------------------------- /tests/ref/issue-place-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/issue-place-base.png -------------------------------------------------------------------------------- /tests/ref/justify-chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/justify-chinese.png -------------------------------------------------------------------------------- /tests/ref/justify-japanese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/justify-japanese.png -------------------------------------------------------------------------------- /tests/ref/justify-variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/justify-variants.png -------------------------------------------------------------------------------- /tests/ref/justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/justify.png -------------------------------------------------------------------------------- /tests/ref/label-in-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/label-in-block.png -------------------------------------------------------------------------------- /tests/ref/label-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/label-on-text.png -------------------------------------------------------------------------------- /tests/ref/let-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/let-basic.png -------------------------------------------------------------------------------- /tests/ref/let-termination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/let-termination.png -------------------------------------------------------------------------------- /tests/ref/line-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/line-basic.png -------------------------------------------------------------------------------- /tests/ref/line-numbers-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/line-numbers-rtl.png -------------------------------------------------------------------------------- /tests/ref/line-positioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/line-positioning.png -------------------------------------------------------------------------------- /tests/ref/line-stroke-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/line-stroke-dash.png -------------------------------------------------------------------------------- /tests/ref/line-stroke-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/line-stroke-set.png -------------------------------------------------------------------------------- /tests/ref/line-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/line-stroke.png -------------------------------------------------------------------------------- /tests/ref/linebreak-link-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/linebreak-link-end.png -------------------------------------------------------------------------------- /tests/ref/linebreak-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/linebreak-link.png -------------------------------------------------------------------------------- /tests/ref/linebreak-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/linebreak-manual.png -------------------------------------------------------------------------------- /tests/ref/linebreak-overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/linebreak-overflow.png -------------------------------------------------------------------------------- /tests/ref/linebreak-thai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/linebreak-thai.png -------------------------------------------------------------------------------- /tests/ref/link-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-basic.png -------------------------------------------------------------------------------- /tests/ref/link-empty-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-empty-block.png -------------------------------------------------------------------------------- /tests/ref/link-on-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-on-block.png -------------------------------------------------------------------------------- /tests/ref/link-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-show.png -------------------------------------------------------------------------------- /tests/ref/link-to-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-to-label.png -------------------------------------------------------------------------------- /tests/ref/link-to-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-to-page.png -------------------------------------------------------------------------------- /tests/ref/link-transformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/link-transformed.png -------------------------------------------------------------------------------- /tests/ref/list-attached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-attached.png -------------------------------------------------------------------------------- /tests/ref/list-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-basic.png -------------------------------------------------------------------------------- /tests/ref/list-content-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-content-block.png -------------------------------------------------------------------------------- /tests/ref/list-item-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-item-styling.png -------------------------------------------------------------------------------- /tests/ref/list-items-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-items-context.png -------------------------------------------------------------------------------- /tests/ref/list-marker-cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-marker-cycle.png -------------------------------------------------------------------------------- /tests/ref/list-marker-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-marker-dash.png -------------------------------------------------------------------------------- /tests/ref/list-mix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-mix.png -------------------------------------------------------------------------------- /tests/ref/list-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-nested.png -------------------------------------------------------------------------------- /tests/ref/list-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-par.png -------------------------------------------------------------------------------- /tests/ref/list-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-rtl.png -------------------------------------------------------------------------------- /tests/ref/list-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/list-tabs.png -------------------------------------------------------------------------------- /tests/ref/locate-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/locate-position.png -------------------------------------------------------------------------------- /tests/ref/lorem-pars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/lorem-pars.png -------------------------------------------------------------------------------- /tests/ref/lorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/lorem.png -------------------------------------------------------------------------------- /tests/ref/math-accent-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-accent-align.png -------------------------------------------------------------------------------- /tests/ref/math-accent-bounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-accent-bounds.png -------------------------------------------------------------------------------- /tests/ref/math-accent-func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-accent-func.png -------------------------------------------------------------------------------- /tests/ref/math-accent-sized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-accent-sized.png -------------------------------------------------------------------------------- /tests/ref/math-align-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-align-basic.png -------------------------------------------------------------------------------- /tests/ref/math-align-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-align-cases.png -------------------------------------------------------------------------------- /tests/ref/math-align-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-align-toggle.png -------------------------------------------------------------------------------- /tests/ref/math-align-weird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-align-weird.png -------------------------------------------------------------------------------- /tests/ref/math-at-line-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-at-line-end.png -------------------------------------------------------------------------------- /tests/ref/math-at-line-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-at-line-start.png -------------------------------------------------------------------------------- /tests/ref/math-at-par-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-at-par-end.png -------------------------------------------------------------------------------- /tests/ref/math-at-par-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-at-par-start.png -------------------------------------------------------------------------------- /tests/ref/math-attach-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-attach-high.png -------------------------------------------------------------------------------- /tests/ref/math-attach-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-attach-limit.png -------------------------------------------------------------------------------- /tests/ref/math-attach-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-attach-mixed.png -------------------------------------------------------------------------------- /tests/ref/math-attach-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-attach-nested.png -------------------------------------------------------------------------------- /tests/ref/math-binom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-binom.png -------------------------------------------------------------------------------- /tests/ref/math-call-non-func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-call-non-func.png -------------------------------------------------------------------------------- /tests/ref/math-cancel-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-cancel-cross.png -------------------------------------------------------------------------------- /tests/ref/math-cancel-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-cancel-inline.png -------------------------------------------------------------------------------- /tests/ref/math-cases-delim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-cases-delim.png -------------------------------------------------------------------------------- /tests/ref/math-cases-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-cases-gap.png -------------------------------------------------------------------------------- /tests/ref/math-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-cases.png -------------------------------------------------------------------------------- /tests/ref/math-class-chars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-class-chars.png -------------------------------------------------------------------------------- /tests/ref/math-class-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-class-content.png -------------------------------------------------------------------------------- /tests/ref/math-class-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-class-limits.png -------------------------------------------------------------------------------- /tests/ref/math-class-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-class-nested.png -------------------------------------------------------------------------------- /tests/ref/math-consecutive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-consecutive.png -------------------------------------------------------------------------------- /tests/ref/math-dif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-dif.png -------------------------------------------------------------------------------- /tests/ref/math-equation-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-equation-font.png -------------------------------------------------------------------------------- /tests/ref/math-font-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-font-fallback.png -------------------------------------------------------------------------------- /tests/ref/math-font-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-font-features.png -------------------------------------------------------------------------------- /tests/ref/math-font-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-font-switch.png -------------------------------------------------------------------------------- /tests/ref/math-frac-baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-frac-baseline.png -------------------------------------------------------------------------------- /tests/ref/math-frac-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-frac-gap.png -------------------------------------------------------------------------------- /tests/ref/math-frac-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-frac-large.png -------------------------------------------------------------------------------- /tests/ref/math-lr-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-call.png -------------------------------------------------------------------------------- /tests/ref/math-lr-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-color.png -------------------------------------------------------------------------------- /tests/ref/math-lr-fences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-fences.png -------------------------------------------------------------------------------- /tests/ref/math-lr-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-half.png -------------------------------------------------------------------------------- /tests/ref/math-lr-matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-matching.png -------------------------------------------------------------------------------- /tests/ref/math-lr-mid-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-mid-size.png -------------------------------------------------------------------------------- /tests/ref/math-lr-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-mid.png -------------------------------------------------------------------------------- /tests/ref/math-lr-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-nested.png -------------------------------------------------------------------------------- /tests/ref/math-lr-scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-scripts.png -------------------------------------------------------------------------------- /tests/ref/math-lr-shorthands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-shorthands.png -------------------------------------------------------------------------------- /tests/ref/math-lr-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-size.png -------------------------------------------------------------------------------- /tests/ref/math-lr-unbalanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-unbalanced.png -------------------------------------------------------------------------------- /tests/ref/math-lr-unmatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-unmatched.png -------------------------------------------------------------------------------- /tests/ref/math-lr-unparen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-lr-unparen.png -------------------------------------------------------------------------------- /tests/ref/math-mat-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-align.png -------------------------------------------------------------------------------- /tests/ref/math-mat-augment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-augment.png -------------------------------------------------------------------------------- /tests/ref/math-mat-baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-baseline.png -------------------------------------------------------------------------------- /tests/ref/math-mat-delim-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-delim-set.png -------------------------------------------------------------------------------- /tests/ref/math-mat-delims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-delims.png -------------------------------------------------------------------------------- /tests/ref/math-mat-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-gap.png -------------------------------------------------------------------------------- /tests/ref/math-mat-gaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-gaps.png -------------------------------------------------------------------------------- /tests/ref/math-mat-semicolon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-semicolon.png -------------------------------------------------------------------------------- /tests/ref/math-mat-sparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-sparse.png -------------------------------------------------------------------------------- /tests/ref/math-mat-spread-1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-spread-1d.png -------------------------------------------------------------------------------- /tests/ref/math-mat-spread-2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-spread-2d.png -------------------------------------------------------------------------------- /tests/ref/math-mat-spread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-mat-spread.png -------------------------------------------------------------------------------- /tests/ref/math-op-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-op-call.png -------------------------------------------------------------------------------- /tests/ref/math-op-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-op-custom.png -------------------------------------------------------------------------------- /tests/ref/math-op-predefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-op-predefined.png -------------------------------------------------------------------------------- /tests/ref/math-op-styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-op-styled.png -------------------------------------------------------------------------------- /tests/ref/math-pagebreaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-pagebreaking.png -------------------------------------------------------------------------------- /tests/ref/math-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-par.png -------------------------------------------------------------------------------- /tests/ref/math-primes-attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-primes-attach.png -------------------------------------------------------------------------------- /tests/ref/math-primes-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-primes-limits.png -------------------------------------------------------------------------------- /tests/ref/math-primes-spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-primes-spaces.png -------------------------------------------------------------------------------- /tests/ref/math-primes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-primes.png -------------------------------------------------------------------------------- /tests/ref/math-root-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-root-basic.png -------------------------------------------------------------------------------- /tests/ref/math-root-syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-root-syntax.png -------------------------------------------------------------------------------- /tests/ref/math-shorthands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-shorthands.png -------------------------------------------------------------------------------- /tests/ref/math-size-resolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-size-resolve.png -------------------------------------------------------------------------------- /tests/ref/math-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-size.png -------------------------------------------------------------------------------- /tests/ref/math-spacing-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-spacing-basic.png -------------------------------------------------------------------------------- /tests/ref/math-spacing-weak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-spacing-weak.png -------------------------------------------------------------------------------- /tests/ref/math-stretch-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-stretch-basic.png -------------------------------------------------------------------------------- /tests/ref/math-style-dotless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-style-dotless.png -------------------------------------------------------------------------------- /tests/ref/math-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-style.png -------------------------------------------------------------------------------- /tests/ref/math-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-table.png -------------------------------------------------------------------------------- /tests/ref/math-text-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-text-color.png -------------------------------------------------------------------------------- /tests/ref/math-text-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-text-size.png -------------------------------------------------------------------------------- /tests/ref/math-unicode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-unicode.png -------------------------------------------------------------------------------- /tests/ref/math-vec-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-vec-align.png -------------------------------------------------------------------------------- /tests/ref/math-vec-delim-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-vec-delim-set.png -------------------------------------------------------------------------------- /tests/ref/math-vec-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-vec-gap.png -------------------------------------------------------------------------------- /tests/ref/math-vec-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/math-vec-wide.png -------------------------------------------------------------------------------- /tests/ref/numbering-chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/numbering-chinese.png -------------------------------------------------------------------------------- /tests/ref/numbering-hebrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/numbering-hebrew.png -------------------------------------------------------------------------------- /tests/ref/numbering-korean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/numbering-korean.png -------------------------------------------------------------------------------- /tests/ref/numbering-latin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/numbering-latin.png -------------------------------------------------------------------------------- /tests/ref/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/numbers.png -------------------------------------------------------------------------------- /tests/ref/ops-add-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/ops-add-content.png -------------------------------------------------------------------------------- /tests/ref/outline-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/outline-bookmark.png -------------------------------------------------------------------------------- /tests/ref/outline-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/outline-entry.png -------------------------------------------------------------------------------- /tests/ref/outline-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/outline-par.png -------------------------------------------------------------------------------- /tests/ref/outline-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/outline-spacing.png -------------------------------------------------------------------------------- /tests/ref/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/outline.png -------------------------------------------------------------------------------- /tests/ref/overhang-lone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/overhang-lone.png -------------------------------------------------------------------------------- /tests/ref/overhang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/overhang.png -------------------------------------------------------------------------------- /tests/ref/pad-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/pad-basic.png -------------------------------------------------------------------------------- /tests/ref/page-fill-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/page-fill-none.png -------------------------------------------------------------------------------- /tests/ref/page-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/page-fill.png -------------------------------------------------------------------------------- /tests/ref/page-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/page-large.png -------------------------------------------------------------------------------- /tests/ref/page-margin-inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/page-margin-inside.png -------------------------------------------------------------------------------- /tests/ref/page-marginals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/page-marginals.png -------------------------------------------------------------------------------- /tests/ref/page-set-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/page-set-empty.png -------------------------------------------------------------------------------- /tests/ref/pagebreak-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/pagebreak-meta.png -------------------------------------------------------------------------------- /tests/ref/pagebreak-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/pagebreak-to.png -------------------------------------------------------------------------------- /tests/ref/pagebreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/pagebreak.png -------------------------------------------------------------------------------- /tests/ref/par-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-basic.png -------------------------------------------------------------------------------- /tests/ref/par-contains-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-contains-block.png -------------------------------------------------------------------------------- /tests/ref/par-hanging-indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-hanging-indent.png -------------------------------------------------------------------------------- /tests/ref/par-semantic-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-semantic-align.png -------------------------------------------------------------------------------- /tests/ref/par-semantic-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-semantic-tag.png -------------------------------------------------------------------------------- /tests/ref/par-semantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-semantic.png -------------------------------------------------------------------------------- /tests/ref/par-show-children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-show-children.png -------------------------------------------------------------------------------- /tests/ref/par-show-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/par-show-styles.png -------------------------------------------------------------------------------- /tests/ref/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/path.png -------------------------------------------------------------------------------- /tests/ref/place-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-background.png -------------------------------------------------------------------------------- /tests/ref/place-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-basic.png -------------------------------------------------------------------------------- /tests/ref/place-float-delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-float-delta.png -------------------------------------------------------------------------------- /tests/ref/place-float-figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-float-figure.png -------------------------------------------------------------------------------- /tests/ref/place-float-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-float-fr.png -------------------------------------------------------------------------------- /tests/ref/place-float-queued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-float-queued.png -------------------------------------------------------------------------------- /tests/ref/place-float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-float.png -------------------------------------------------------------------------------- /tests/ref/place-flush-figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-flush-figure.png -------------------------------------------------------------------------------- /tests/ref/place-flush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/place-flush.png -------------------------------------------------------------------------------- /tests/ref/polygon-line-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/polygon-line-join.png -------------------------------------------------------------------------------- /tests/ref/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/polygon.png -------------------------------------------------------------------------------- /tests/ref/query-and-or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/query-and-or.png -------------------------------------------------------------------------------- /tests/ref/query-before-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/query-before-after.png -------------------------------------------------------------------------------- /tests/ref/query-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/query-complex.png -------------------------------------------------------------------------------- /tests/ref/query-quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/query-quote.png -------------------------------------------------------------------------------- /tests/ref/quote-dir-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/quote-dir-align.png -------------------------------------------------------------------------------- /tests/ref/quote-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/quote-inline.png -------------------------------------------------------------------------------- /tests/ref/quote-nesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/quote-nesting.png -------------------------------------------------------------------------------- /tests/ref/quote-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/quote-par.png -------------------------------------------------------------------------------- /tests/ref/raw-align-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-align-default.png -------------------------------------------------------------------------------- /tests/ref/raw-empty-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-empty-lines.png -------------------------------------------------------------------------------- /tests/ref/raw-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-empty.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-cpp.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-html.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-py.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-rust.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-typ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-typ.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-typc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-typc.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight-typm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight-typm.png -------------------------------------------------------------------------------- /tests/ref/raw-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-highlight.png -------------------------------------------------------------------------------- /tests/ref/raw-line-text-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-line-text-fill.png -------------------------------------------------------------------------------- /tests/ref/raw-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-line.png -------------------------------------------------------------------------------- /tests/ref/raw-more-backticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-more-backticks.png -------------------------------------------------------------------------------- /tests/ref/raw-show-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-show-set.png -------------------------------------------------------------------------------- /tests/ref/raw-syntaxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-syntaxes.png -------------------------------------------------------------------------------- /tests/ref/raw-tab-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-tab-size.png -------------------------------------------------------------------------------- /tests/ref/raw-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-theme.png -------------------------------------------------------------------------------- /tests/ref/raw-trimming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-trimming.png -------------------------------------------------------------------------------- /tests/ref/raw-typst-lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/raw-typst-lang.png -------------------------------------------------------------------------------- /tests/ref/rect-customization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/rect-customization.png -------------------------------------------------------------------------------- /tests/ref/rect-fill-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/rect-fill-stroke.png -------------------------------------------------------------------------------- /tests/ref/rect-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/rect-stroke.png -------------------------------------------------------------------------------- /tests/ref/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/rect.png -------------------------------------------------------------------------------- /tests/ref/ref-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/ref-basic.png -------------------------------------------------------------------------------- /tests/ref/ref-form-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/ref-form-page.png -------------------------------------------------------------------------------- /tests/ref/ref-supplements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/ref-supplements.png -------------------------------------------------------------------------------- /tests/ref/repeat-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repeat-basic.png -------------------------------------------------------------------------------- /tests/ref/repeat-dots-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repeat-dots-rtl.png -------------------------------------------------------------------------------- /tests/ref/repeat-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repeat-empty.png -------------------------------------------------------------------------------- /tests/ref/repeat-gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repeat-gap.png -------------------------------------------------------------------------------- /tests/ref/repeat-no-justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repeat-no-justify.png -------------------------------------------------------------------------------- /tests/ref/repeat-unboxed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repeat-unboxed.png -------------------------------------------------------------------------------- /tests/ref/repr-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repr-color.png -------------------------------------------------------------------------------- /tests/ref/repr-literals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repr-literals.png -------------------------------------------------------------------------------- /tests/ref/repr-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repr-misc.png -------------------------------------------------------------------------------- /tests/ref/repr-numerical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/repr-numerical.png -------------------------------------------------------------------------------- /tests/ref/set-if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/set-if.png -------------------------------------------------------------------------------- /tests/ref/set-text-override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/set-text-override.png -------------------------------------------------------------------------------- /tests/ref/set-vs-construct-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/set-vs-construct-1.png -------------------------------------------------------------------------------- /tests/ref/set-vs-construct-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/set-vs-construct-2.png -------------------------------------------------------------------------------- /tests/ref/set-vs-construct-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/set-vs-construct-3.png -------------------------------------------------------------------------------- /tests/ref/set-vs-construct-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/set-vs-construct-4.png -------------------------------------------------------------------------------- /tests/ref/shorthand-dashes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/shorthand-dashes.png -------------------------------------------------------------------------------- /tests/ref/shorthand-ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/shorthand-ellipsis.png -------------------------------------------------------------------------------- /tests/ref/shorthand-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/shorthand-minus.png -------------------------------------------------------------------------------- /tests/ref/shorthands-math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/shorthands-math.png -------------------------------------------------------------------------------- /tests/ref/show-bare-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-bare-basic.png -------------------------------------------------------------------------------- /tests/ref/show-in-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-in-show.png -------------------------------------------------------------------------------- /tests/ref/show-nested-scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-nested-scopes.png -------------------------------------------------------------------------------- /tests/ref/show-set-override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-set-override.png -------------------------------------------------------------------------------- /tests/ref/show-text-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-text-basic.png -------------------------------------------------------------------------------- /tests/ref/show-text-citation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-text-citation.png -------------------------------------------------------------------------------- /tests/ref/show-text-cyclic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-text-cyclic.png -------------------------------------------------------------------------------- /tests/ref/show-text-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-text-list.png -------------------------------------------------------------------------------- /tests/ref/show-text-regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/show-text-regex.png -------------------------------------------------------------------------------- /tests/ref/smallcaps-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smallcaps-all.png -------------------------------------------------------------------------------- /tests/ref/smallcaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smallcaps.png -------------------------------------------------------------------------------- /tests/ref/smartquote-bracket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-bracket.png -------------------------------------------------------------------------------- /tests/ref/smartquote-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-custom.png -------------------------------------------------------------------------------- /tests/ref/smartquote-de-ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-de-ch.png -------------------------------------------------------------------------------- /tests/ref/smartquote-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-de.png -------------------------------------------------------------------------------- /tests/ref/smartquote-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-disable.png -------------------------------------------------------------------------------- /tests/ref/smartquote-el.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-el.png -------------------------------------------------------------------------------- /tests/ref/smartquote-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-empty.png -------------------------------------------------------------------------------- /tests/ref/smartquote-es-mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-es-mx.png -------------------------------------------------------------------------------- /tests/ref/smartquote-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-es.png -------------------------------------------------------------------------------- /tests/ref/smartquote-escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-escape.png -------------------------------------------------------------------------------- /tests/ref/smartquote-fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-fi.png -------------------------------------------------------------------------------- /tests/ref/smartquote-fr-ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-fr-ch.png -------------------------------------------------------------------------------- /tests/ref/smartquote-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-fr.png -------------------------------------------------------------------------------- /tests/ref/smartquote-he.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-he.png -------------------------------------------------------------------------------- /tests/ref/smartquote-it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-it.png -------------------------------------------------------------------------------- /tests/ref/smartquote-la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-la.png -------------------------------------------------------------------------------- /tests/ref/smartquote-nesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-nesting.png -------------------------------------------------------------------------------- /tests/ref/smartquote-prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-prime.png -------------------------------------------------------------------------------- /tests/ref/smartquote-ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-ro.png -------------------------------------------------------------------------------- /tests/ref/smartquote-ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-ru.png -------------------------------------------------------------------------------- /tests/ref/smartquote-slash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote-slash.png -------------------------------------------------------------------------------- /tests/ref/smartquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/smartquote.png -------------------------------------------------------------------------------- /tests/ref/space-collapsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/space-collapsing.png -------------------------------------------------------------------------------- /tests/ref/space-thin-kept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/space-thin-kept.png -------------------------------------------------------------------------------- /tests/ref/spacing-h-and-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/spacing-h-and-v.png -------------------------------------------------------------------------------- /tests/ref/spacing-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/spacing-rtl.png -------------------------------------------------------------------------------- /tests/ref/square-auto-sized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/square-auto-sized.png -------------------------------------------------------------------------------- /tests/ref/square-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/square-base.png -------------------------------------------------------------------------------- /tests/ref/square-no-overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/square-no-overflow.png -------------------------------------------------------------------------------- /tests/ref/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/square.png -------------------------------------------------------------------------------- /tests/ref/stack-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stack-basic.png -------------------------------------------------------------------------------- /tests/ref/stack-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stack-fr.png -------------------------------------------------------------------------------- /tests/ref/stack-overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stack-overflow.png -------------------------------------------------------------------------------- /tests/ref/stack-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stack-spacing.png -------------------------------------------------------------------------------- /tests/ref/state-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/state-basic.png -------------------------------------------------------------------------------- /tests/ref/state-nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/state-nested.png -------------------------------------------------------------------------------- /tests/ref/std-math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/std-math.png -------------------------------------------------------------------------------- /tests/ref/strike-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/strike-background.png -------------------------------------------------------------------------------- /tests/ref/strike-with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/strike-with.png -------------------------------------------------------------------------------- /tests/ref/stroke-composition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stroke-composition.png -------------------------------------------------------------------------------- /tests/ref/stroke-folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stroke-folding.png -------------------------------------------------------------------------------- /tests/ref/stroke-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/stroke-text.png -------------------------------------------------------------------------------- /tests/ref/strong-delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/strong-delta.png -------------------------------------------------------------------------------- /tests/ref/sub-super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/sub-super.png -------------------------------------------------------------------------------- /tests/ref/super-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/super-underline.png -------------------------------------------------------------------------------- /tests/ref/symbol-constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/symbol-constructor.png -------------------------------------------------------------------------------- /tests/ref/symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/symbol.png -------------------------------------------------------------------------------- /tests/ref/table-align-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-align-array.png -------------------------------------------------------------------------------- /tests/ref/table-cell-folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-cell-folding.png -------------------------------------------------------------------------------- /tests/ref/table-cell-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-cell-par.png -------------------------------------------------------------------------------- /tests/ref/table-cell-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-cell-set.png -------------------------------------------------------------------------------- /tests/ref/table-cell-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-cell-show.png -------------------------------------------------------------------------------- /tests/ref/table-fill-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-fill-basic.png -------------------------------------------------------------------------------- /tests/ref/table-gutters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-gutters.png -------------------------------------------------------------------------------- /tests/ref/table-inset-fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-inset-fold.png -------------------------------------------------------------------------------- /tests/ref/table-inset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-inset.png -------------------------------------------------------------------------------- /tests/ref/table-newlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/table-newlines.png -------------------------------------------------------------------------------- /tests/ref/terms-constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/terms-constructor.png -------------------------------------------------------------------------------- /tests/ref/terms-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/terms-grid.png -------------------------------------------------------------------------------- /tests/ref/terms-multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/terms-multiline.png -------------------------------------------------------------------------------- /tests/ref/terms-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/terms-par.png -------------------------------------------------------------------------------- /tests/ref/terms-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/terms-rtl.png -------------------------------------------------------------------------------- /tests/ref/text-call-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-call-body.png -------------------------------------------------------------------------------- /tests/ref/text-chinese-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-chinese-basic.png -------------------------------------------------------------------------------- /tests/ref/text-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-edge.png -------------------------------------------------------------------------------- /tests/ref/text-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-features.png -------------------------------------------------------------------------------- /tests/ref/text-kerning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-kerning.png -------------------------------------------------------------------------------- /tests/ref/text-lang-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-lang-region.png -------------------------------------------------------------------------------- /tests/ref/text-lang-shaping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-lang-shaping.png -------------------------------------------------------------------------------- /tests/ref/text-lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-lang.png -------------------------------------------------------------------------------- /tests/ref/text-ligatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-ligatures.png -------------------------------------------------------------------------------- /tests/ref/text-number-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-number-type.png -------------------------------------------------------------------------------- /tests/ref/text-number-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-number-width.png -------------------------------------------------------------------------------- /tests/ref/text-size-em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-size-em.png -------------------------------------------------------------------------------- /tests/ref/text-spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/text-spacing.png -------------------------------------------------------------------------------- /tests/ref/tiling-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/tiling-line.png -------------------------------------------------------------------------------- /tests/ref/tiling-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/tiling-lines.png -------------------------------------------------------------------------------- /tests/ref/tiling-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/tiling-small.png -------------------------------------------------------------------------------- /tests/ref/tiling-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/tiling-stroke.png -------------------------------------------------------------------------------- /tests/ref/tiling-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/tiling-text.png -------------------------------------------------------------------------------- /tests/ref/transform-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/transform-rotate.png -------------------------------------------------------------------------------- /tests/ref/transform-scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/transform-scale.png -------------------------------------------------------------------------------- /tests/ref/transform-skew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/transform-skew.png -------------------------------------------------------------------------------- /tests/ref/transform-tex-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/transform-tex-logo.png -------------------------------------------------------------------------------- /tests/ref/while-loop-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/ref/while-loop-basic.png -------------------------------------------------------------------------------- /tests/skip.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/args.rs -------------------------------------------------------------------------------- /tests/src/benches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/benches.rs -------------------------------------------------------------------------------- /tests/src/collect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/collect.rs -------------------------------------------------------------------------------- /tests/src/custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/custom.rs -------------------------------------------------------------------------------- /tests/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/logger.rs -------------------------------------------------------------------------------- /tests/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/run.rs -------------------------------------------------------------------------------- /tests/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/tests.rs -------------------------------------------------------------------------------- /tests/src/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/src/world.rs -------------------------------------------------------------------------------- /tests/suite/foundations/calc.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/calc.typ -------------------------------------------------------------------------------- /tests/suite/foundations/dict.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/dict.typ -------------------------------------------------------------------------------- /tests/suite/foundations/eval.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/eval.typ -------------------------------------------------------------------------------- /tests/suite/foundations/int.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/int.typ -------------------------------------------------------------------------------- /tests/suite/foundations/repr.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/repr.typ -------------------------------------------------------------------------------- /tests/suite/foundations/std.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/std.typ -------------------------------------------------------------------------------- /tests/suite/foundations/str.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/str.typ -------------------------------------------------------------------------------- /tests/suite/foundations/type.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/foundations/type.typ -------------------------------------------------------------------------------- /tests/suite/html/elem.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/html/elem.typ -------------------------------------------------------------------------------- /tests/suite/layout/align.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/align.typ -------------------------------------------------------------------------------- /tests/suite/layout/angle.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/angle.typ -------------------------------------------------------------------------------- /tests/suite/layout/clip.typ: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/suite/layout/columns.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/columns.typ -------------------------------------------------------------------------------- /tests/suite/layout/container.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/container.typ -------------------------------------------------------------------------------- /tests/suite/layout/dir.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/dir.typ -------------------------------------------------------------------------------- /tests/suite/layout/flow/flow.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/flow/flow.typ -------------------------------------------------------------------------------- /tests/suite/layout/grid/cell.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/grid/cell.typ -------------------------------------------------------------------------------- /tests/suite/layout/grid/grid.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/grid/grid.typ -------------------------------------------------------------------------------- /tests/suite/layout/grid/html.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/grid/html.typ -------------------------------------------------------------------------------- /tests/suite/layout/grid/rtl.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/grid/rtl.typ -------------------------------------------------------------------------------- /tests/suite/layout/hide.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/hide.typ -------------------------------------------------------------------------------- /tests/suite/layout/layout.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/layout.typ -------------------------------------------------------------------------------- /tests/suite/layout/length.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/length.typ -------------------------------------------------------------------------------- /tests/suite/layout/limits.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/limits.typ -------------------------------------------------------------------------------- /tests/suite/layout/measure.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/measure.typ -------------------------------------------------------------------------------- /tests/suite/layout/pad.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/pad.typ -------------------------------------------------------------------------------- /tests/suite/layout/page.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/page.typ -------------------------------------------------------------------------------- /tests/suite/layout/pagebreak.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/pagebreak.typ -------------------------------------------------------------------------------- /tests/suite/layout/place.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/place.typ -------------------------------------------------------------------------------- /tests/suite/layout/relative.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/relative.typ -------------------------------------------------------------------------------- /tests/suite/layout/repeat.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/repeat.typ -------------------------------------------------------------------------------- /tests/suite/layout/spacing.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/spacing.typ -------------------------------------------------------------------------------- /tests/suite/layout/stack.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/stack.typ -------------------------------------------------------------------------------- /tests/suite/layout/table.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/table.typ -------------------------------------------------------------------------------- /tests/suite/layout/transform.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/layout/transform.typ -------------------------------------------------------------------------------- /tests/suite/loading/cbor.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/cbor.typ -------------------------------------------------------------------------------- /tests/suite/loading/csv.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/csv.typ -------------------------------------------------------------------------------- /tests/suite/loading/json.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/json.typ -------------------------------------------------------------------------------- /tests/suite/loading/read.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/read.typ -------------------------------------------------------------------------------- /tests/suite/loading/toml.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/toml.typ -------------------------------------------------------------------------------- /tests/suite/loading/xml.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/xml.typ -------------------------------------------------------------------------------- /tests/suite/loading/yaml.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/loading/yaml.typ -------------------------------------------------------------------------------- /tests/suite/math/accent.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/accent.typ -------------------------------------------------------------------------------- /tests/suite/math/alignment.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/alignment.typ -------------------------------------------------------------------------------- /tests/suite/math/attach.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/attach.typ -------------------------------------------------------------------------------- /tests/suite/math/call.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/call.typ -------------------------------------------------------------------------------- /tests/suite/math/cancel.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/cancel.typ -------------------------------------------------------------------------------- /tests/suite/math/cases.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/cases.typ -------------------------------------------------------------------------------- /tests/suite/math/class.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/class.typ -------------------------------------------------------------------------------- /tests/suite/math/delimited.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/delimited.typ -------------------------------------------------------------------------------- /tests/suite/math/equation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/equation.typ -------------------------------------------------------------------------------- /tests/suite/math/frac.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/frac.typ -------------------------------------------------------------------------------- /tests/suite/math/mat.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/mat.typ -------------------------------------------------------------------------------- /tests/suite/math/multiline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/multiline.typ -------------------------------------------------------------------------------- /tests/suite/math/op.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/op.typ -------------------------------------------------------------------------------- /tests/suite/math/primes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/primes.typ -------------------------------------------------------------------------------- /tests/suite/math/root.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/root.typ -------------------------------------------------------------------------------- /tests/suite/math/size.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/size.typ -------------------------------------------------------------------------------- /tests/suite/math/spacing.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/spacing.typ -------------------------------------------------------------------------------- /tests/suite/math/stretch.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/stretch.typ -------------------------------------------------------------------------------- /tests/suite/math/style.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/style.typ -------------------------------------------------------------------------------- /tests/suite/math/symbols.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/symbols.typ -------------------------------------------------------------------------------- /tests/suite/math/syntax.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/syntax.typ -------------------------------------------------------------------------------- /tests/suite/math/text.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/text.typ -------------------------------------------------------------------------------- /tests/suite/math/underover.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/underover.typ -------------------------------------------------------------------------------- /tests/suite/math/vec.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/math/vec.typ -------------------------------------------------------------------------------- /tests/suite/model/cite.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/cite.typ -------------------------------------------------------------------------------- /tests/suite/model/document.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/document.typ -------------------------------------------------------------------------------- /tests/suite/model/enum.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/enum.typ -------------------------------------------------------------------------------- /tests/suite/model/figure.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/figure.typ -------------------------------------------------------------------------------- /tests/suite/model/footnote.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/footnote.typ -------------------------------------------------------------------------------- /tests/suite/model/heading.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/heading.typ -------------------------------------------------------------------------------- /tests/suite/model/link.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/link.typ -------------------------------------------------------------------------------- /tests/suite/model/list.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/list.typ -------------------------------------------------------------------------------- /tests/suite/model/numbering.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/numbering.typ -------------------------------------------------------------------------------- /tests/suite/model/outline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/outline.typ -------------------------------------------------------------------------------- /tests/suite/model/par.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/par.typ -------------------------------------------------------------------------------- /tests/suite/model/quote.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/quote.typ -------------------------------------------------------------------------------- /tests/suite/model/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/ref.typ -------------------------------------------------------------------------------- /tests/suite/model/terms.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/model/terms.typ -------------------------------------------------------------------------------- /tests/suite/pdf/embed.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/pdf/embed.typ -------------------------------------------------------------------------------- /tests/suite/playground.typ: -------------------------------------------------------------------------------- 1 | --- playground --- 2 | -------------------------------------------------------------------------------- /tests/suite/scripting/blocks.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/blocks.typ -------------------------------------------------------------------------------- /tests/suite/scripting/call.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/call.typ -------------------------------------------------------------------------------- /tests/suite/scripting/field.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/field.typ -------------------------------------------------------------------------------- /tests/suite/scripting/for.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/for.typ -------------------------------------------------------------------------------- /tests/suite/scripting/if.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/if.typ -------------------------------------------------------------------------------- /tests/suite/scripting/import.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/import.typ -------------------------------------------------------------------------------- /tests/suite/scripting/let.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/let.typ -------------------------------------------------------------------------------- /tests/suite/scripting/loop.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/loop.typ -------------------------------------------------------------------------------- /tests/suite/scripting/module.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/module.typ -------------------------------------------------------------------------------- /tests/suite/scripting/modules/with space.typ: -------------------------------------------------------------------------------- 1 | // SKIP 2 | -------------------------------------------------------------------------------- /tests/suite/scripting/ops.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/ops.typ -------------------------------------------------------------------------------- /tests/suite/scripting/params.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/params.typ -------------------------------------------------------------------------------- /tests/suite/scripting/return.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/return.typ -------------------------------------------------------------------------------- /tests/suite/scripting/while.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/scripting/while.typ -------------------------------------------------------------------------------- /tests/suite/styling/fold.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/styling/fold.typ -------------------------------------------------------------------------------- /tests/suite/styling/set.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/styling/set.typ -------------------------------------------------------------------------------- /tests/suite/styling/show-set.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/styling/show-set.typ -------------------------------------------------------------------------------- /tests/suite/styling/show.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/styling/show.typ -------------------------------------------------------------------------------- /tests/suite/symbols/symbol.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/symbols/symbol.typ -------------------------------------------------------------------------------- /tests/suite/syntax/bugs.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/bugs.typ -------------------------------------------------------------------------------- /tests/suite/syntax/comment.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/comment.typ -------------------------------------------------------------------------------- /tests/suite/syntax/embedded.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/embedded.typ -------------------------------------------------------------------------------- /tests/suite/syntax/escape.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/escape.typ -------------------------------------------------------------------------------- /tests/suite/syntax/newlines.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/newlines.typ -------------------------------------------------------------------------------- /tests/suite/syntax/numbers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/numbers.typ -------------------------------------------------------------------------------- /tests/suite/syntax/shebang.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/shebang.typ -------------------------------------------------------------------------------- /tests/suite/syntax/shorthand.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/syntax/shorthand.typ -------------------------------------------------------------------------------- /tests/suite/text/case.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/case.typ -------------------------------------------------------------------------------- /tests/suite/text/coma.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/coma.typ -------------------------------------------------------------------------------- /tests/suite/text/copy-paste.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/copy-paste.typ -------------------------------------------------------------------------------- /tests/suite/text/deco.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/deco.typ -------------------------------------------------------------------------------- /tests/suite/text/edge.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/edge.typ -------------------------------------------------------------------------------- /tests/suite/text/em.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/em.typ -------------------------------------------------------------------------------- /tests/suite/text/font.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/font.typ -------------------------------------------------------------------------------- /tests/suite/text/lang.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/lang.typ -------------------------------------------------------------------------------- /tests/suite/text/lorem.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/lorem.typ -------------------------------------------------------------------------------- /tests/suite/text/raw.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/raw.typ -------------------------------------------------------------------------------- /tests/suite/text/shift.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/shift.typ -------------------------------------------------------------------------------- /tests/suite/text/smallcaps.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/smallcaps.typ -------------------------------------------------------------------------------- /tests/suite/text/smartquote.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/smartquote.typ -------------------------------------------------------------------------------- /tests/suite/text/space.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/text/space.typ -------------------------------------------------------------------------------- /tests/suite/visualize/circle.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/circle.typ -------------------------------------------------------------------------------- /tests/suite/visualize/color.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/color.typ -------------------------------------------------------------------------------- /tests/suite/visualize/curve.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/curve.typ -------------------------------------------------------------------------------- /tests/suite/visualize/image.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/image.typ -------------------------------------------------------------------------------- /tests/suite/visualize/line.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/line.typ -------------------------------------------------------------------------------- /tests/suite/visualize/path.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/path.typ -------------------------------------------------------------------------------- /tests/suite/visualize/rect.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/rect.typ -------------------------------------------------------------------------------- /tests/suite/visualize/square.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/square.typ -------------------------------------------------------------------------------- /tests/suite/visualize/stroke.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/stroke.typ -------------------------------------------------------------------------------- /tests/suite/visualize/tiling.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tests/suite/visualize/tiling.typ -------------------------------------------------------------------------------- /tools/support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tools/support/README.md -------------------------------------------------------------------------------- /tools/support/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tools/support/config.json -------------------------------------------------------------------------------- /tools/support/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tools/support/package.json -------------------------------------------------------------------------------- /tools/test-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tools/test-helper/README.md -------------------------------------------------------------------------------- /tools/test-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tools/test-helper/package.json -------------------------------------------------------------------------------- /tools/test-helper/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tools/test-helper/tsconfig.json -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/translate.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/website/.editorconfig -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/website/README.md -------------------------------------------------------------------------------- /website/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/website/favicon.png -------------------------------------------------------------------------------- /website/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/website/metadata.json -------------------------------------------------------------------------------- /website/translation-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-jp/docs/HEAD/website/translation-status.json --------------------------------------------------------------------------------