diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-10 11:28:12 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-10 11:28:12 +0200 |
| commit | 8207c31aec6336b773fbf4661fdb87625c8b584e (patch) | |
| tree | c1642033478081bec6c3eed693e92a469f0500e1 /tests/typ/markup/lists.typ | |
| parent | 3932bb2cb93be95d67fc56998423eb9ce047fdfa (diff) | |
Minor refactorings
- Reorder parser methods and use `Pos` everywhere
- Remove tab special handling for columns and adapt heading/list/enum indent handling
- Don't panic when a file has an empty path
Diffstat (limited to 'tests/typ/markup/lists.typ')
| -rw-r--r-- | tests/typ/markup/lists.typ | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/tests/typ/markup/lists.typ b/tests/typ/markup/lists.typ index 5c464ab8..716fcd73 100644 --- a/tests/typ/markup/lists.typ +++ b/tests/typ/markup/lists.typ @@ -7,6 +7,12 @@ _Shopping list_ - Juice --- +Tightly +- surrounded +- by two +paragraphs. + +--- - First level. - Second level. @@ -18,28 +24,26 @@ _Shopping list_ - At the top. --- -- Works - - Also with four spaces - - Or two tabs +- Level 1 + - Level [ +2 through template +] --- - Top-level indent - is fine. --- -Tightly -- surrounded -- by two -paragraphs. - ---- - A - B - C - - D +- D --- -- Level 1 - - Level [ -2 through template -] +// This works because tabs are used consistently. + - A with 1 tab + - B with 2 tabs + +// This doesn't work because of mixed tabs and spaces. + - A with 2 spaces + - B with 2 tabs |
