diff options
Diffstat (limited to 'tests/typ/elements/heading.typ')
| -rw-r--r-- | tests/typ/elements/heading.typ | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/typ/elements/heading.typ b/tests/typ/elements/heading.typ new file mode 100644 index 00000000..2ae97aa8 --- /dev/null +++ b/tests/typ/elements/heading.typ @@ -0,0 +1,50 @@ +// Test headings. + +--- +// Different number of hashtags. + +// Valid levels. += Level 1 +=== Level 2 +====== Level 6 + +// At some point, it should stop shrinking. +=========== Level 11 + +--- +// Heading vs. no heading. + +// Parsed as headings if at start of the context. +/**/ = Level 1 +{[== Level 2]} +#box[=== Level 3] + +// Not at the start of the context. +No = heading + +// Escaped. +\= No heading + +--- +// While indented at least as much as the start, the heading continues. + += This + is + indented. + += This +is not. + +// Code blocks continue heading. += A { + "B" +} + +--- +// Test styling. += Heading + +#set heading(family: "Roboto", fill: eastern) + +===== Heading 🌍 +#heading(level: 5)[Heading] |
