summaryrefslogtreecommitdiff
path: root/tests/typ/markup/raw.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-02-28 15:50:48 +0100
committerLaurenz <laurmaedje@gmail.com>2022-02-28 23:54:34 +0100
commit3ca5b238238e1128aa7bbfbd5db9e632045d8600 (patch)
tree2471f4b340a15695b7f4d518c0b39fabaea676c4 /tests/typ/markup/raw.typ
parentb63c21c91d99a1554a019dc275f955d3e6a34271 (diff)
Reorganize library
Diffstat (limited to 'tests/typ/markup/raw.typ')
-rw-r--r--tests/typ/markup/raw.typ59
1 files changed, 0 insertions, 59 deletions
diff --git a/tests/typ/markup/raw.typ b/tests/typ/markup/raw.typ
deleted file mode 100644
index 0e053a9b..00000000
--- a/tests/typ/markup/raw.typ
+++ /dev/null
@@ -1,59 +0,0 @@
-// Test raw blocks.
-
----
-// No extra space.
-`A``B`
-
----
-// Typst syntax inside.
-`#let x = 1` \
-`#f(1)`
-
----
-// Multiline block splits paragraphs.
-
-First
-```
-Second
-```
-Third
-
----
-// Lots of backticks inside.
-````
-```backticks```
-````
-
----
-// Trimming.
-
-// Space between "rust" and "let" is trimmed.
-The keyword ```rust let```.
-
-// Trimming depends on number backticks.
-<``> \
-<` untrimmed `> \
-<``` trimmed` ```> \
-<``` trimmed ```> \
-<``` trimmed```>
-
-// Multiline trimming and dedenting.
-#block[
- ```py
- import this
-
- def hi():
- print("Hi!")
- ```
-]
-
----
-// First line is not dedented and leading space is still possible.
- ``` A
- B
- C```
-
----
-// Unterminated.
-// Error: 2:1 expected 1 backtick
-`endless