Martin Haug
8e700606bb
Add a cache for unchanged layouts
...
Co-Authored-By: Laurenz <laurmaedje@gmail.com>
2021-05-26 23:50:40 +02:00
Laurenz
de20a21a58
Reshaping with unsafe-to-break ⚡
...
Co-Authored-By: Martin <mhaug@live.de>
2021-04-05 22:32:09 +02:00
Laurenz
e8057a5385
Make pdf module top-level 🧱
2021-03-24 21:48:25 +01:00
Laurenz
73615f7e3c
Text shaping 🚀
...
- Shapes text with rustybuzz
- Font fallback with family list
- Tofus are shown in the first font
Co-Authored-By: Martin <mhaug@live.de>
2021-03-24 17:12:34 +01:00
Laurenz
5e08028fb3
Syntax functions 🚀
...
This adds overridable functions that markup desugars into. Specifically:
- \ desugars into linebreak
- Two newlines desugar into parbreak
- * desugars into strong
- _ desugars into emph
- = .. desugars into heading
- `..` desugars into raw
2021-03-21 17:50:56 +01:00
Laurenz
264a7dedd4
Scheduled maintenance 🔨
...
- New naming scheme
- TextNode instead of NodeText
- CallExpr instead of ExprCall
- ...
- Less glob imports
- Removes Value::Args variant
- Removes prelude
- Renames Layouted to Fragment
- Moves font into env
- Moves shaping into layout
- Moves frame into separate module
2021-03-19 17:57:31 +01:00
Laurenz
271b0f953b
Fixes in TextMate grammar ✅
2021-03-17 14:47:11 +01:00
Laurenz
146eda102a
Move span directly into diagnostics 🚚
2021-02-11 19:26:47 +01:00
Laurenz
06ca740d01
Split evaluation and execution 🔪
2021-02-09 19:46:57 +01:00
Laurenz
d763f0f5a6
Split state and scopes, less ref-counting 🔀
2021-01-15 16:53:02 +01:00
Laurenz
7b4d4d6002
Pretty printing 🦋
...
- Syntax tree and value pretty printing
- Better value evaluation (top-level strings and content are evaluated plainly, everything else is pretty printed)
2021-01-06 01:32:59 +01:00
Laurenz
aae67bd572
Move and rename many things 🚛
2021-01-03 00:12:09 +01:00
Laurenz
475ca7a62e
Basic environment and resource loader 🏞
2020-11-27 22:35:42 +01:00
Laurenz
761931405c
Use newly stabilized intra doc links ↩
2020-11-24 16:12:41 +01:00
Laurenz
1a70cb6a33
Naming and grammar ✔
2020-10-12 18:01:22 +02:00
Laurenz
38157b0e0c
Synchronous layout 🪀
2020-10-12 17:10:01 +02:00
Laurenz
92c01da360
Switch back to custom geometry types, unified with layout primitives 🏞
2020-10-10 22:19:36 +02:00
Laurenz
d2e220245d
Move deco, pass and feedback into diagnostics module ↩
2020-10-07 18:24:47 +02:00
Laurenz
537545e7f8
Evaluation and node-based layouting 🚀
2020-10-07 17:07:44 +02:00
Laurenz
335fa2d118
Small improvements 🍪
2020-10-04 23:31:35 +02:00
Laurenz
ef8aa763fa
Shorten some names ↔
2020-10-04 20:22:11 +02:00
Laurenz
c1dd872b34
Remove unncessary wrappers and typedefs 🛑
2020-10-04 19:57:39 +02:00
Laurenz
0f7c70fd93
Separate state and constraints 🧶
2020-10-04 19:06:20 +02:00
Laurenz
6672f8f7df
Remove Typesetter in favor of typeset function 🎯
2020-10-04 18:18:55 +02:00
Laurenz
262a8fa36a
Refactor and move shaping out of the layout module ⛳
2020-10-04 18:01:56 +02:00
Laurenz
54e0da59e3
Small documentation fixes 🧾
2020-10-03 18:15:09 +02:00
Laurenz
0fc25d732d
Port to kurbo 🎋
2020-10-03 13:23:59 +02:00
Laurenz
f8770d2b2a
Generalize layouting primitives 🛤
2020-10-01 15:35:09 +02:00
Laurenz
e676ab53dd
Rename compute to eval ✏
2020-10-01 15:13:04 +02:00
Laurenz
7c12f0c07f
Flatten compute module
2020-10-01 15:10:35 +02:00
Laurenz
7fcad452b8
Reorganize ast types 🏕
2020-10-01 15:03:37 +02:00
Laurenz
3e791e3337
Move decoration into mod.rs 🔙
2020-09-30 12:49:30 +02:00
Laurenz
bc1b4216a8
Reorganize syntax types into two modules 📦
2020-09-30 12:45:33 +02:00
Laurenz
181f756a9e
Format everything with rustfmt! 💚
2020-08-30 22:18:55 +02:00
Laurenz
3cbca56a71
Parse braced expressions and bracketed calls in headers 🗳
...
- Refactors the tokenizer to be lazy: It does not emit pre-parsed function tokens, but instead allows it's mode to be changed. The modes are tracked on a stack to allow nested compute/typesetting (pop/push).
- Introduces delimited groups into the parser, which make it easy to parse delimited expressions without handling the delimiters in the parsing code for the group's content. A group is started with `start_group`. When reaching the group's end (matching delimiter) the eat and peek methods will simply return `None` instead of the delimiter, stopping the content parser and bubbling up the call stack until `end_group` is called to clear up the situation.
2020-08-17 16:25:09 +02:00
Laurenz
30f16bbf64
Add Value type and replace dyn-nodes with call-exprs 🏗
...
- In addition to syntax trees there are now `Value`s, which syntax trees can be evaluated into (e.g. the tree is `5+5` and the value is `10`)
- Parsing is completely pure, function calls are not parsed into nodes, but into simple call expressions, which are resolved later
- Functions aren't dynamic nodes anymore, but simply functions which receive their arguments as a table and the layouting context
- Functions may return any `Value`
- Layouting is powered by functions which return the new `Commands` value, which informs the layouting engine what to do
- When a function returns a non-`Commands` value, the layouter simply dumps the value into the document in monospace
2020-08-16 22:39:21 +02:00
Laurenz
691423a40a
Basic table type 📔
...
- Keys are strings or integers
- Access with borrowed or owned keys
- `push` method for array-like pattern
- No iteration support yet
2020-08-14 11:40:34 +02:00
Laurenz
2467cd6272
Refactor function parsing ♻
2020-08-04 13:48:07 +02:00
Laurenz
dbfb3d2ced
Formatting, documentation and small improvements 🧽
2020-08-03 16:04:55 +02:00
Laurenz
266d457292
Refactor model into tree 🛒
2020-08-02 22:05:49 +02:00
Laurenz
cbbc46215f
Layout elements and pure rust rendering 🥏
2020-08-02 21:17:42 +02:00
Laurenz
d5ff97f42e
Move binary into separate crate and tidy dependencies 🎭
2020-08-02 16:56:14 +02:00
Laurenz
533374db14
Refactor argument parsing 🔬
2020-08-02 16:31:34 +02:00
Laurenz
659248d52f
Raw lengths 🚲
...
Replace unitless length with raw f64 and introduce length type with unit.
2020-08-01 19:15:55 +02:00
Laurenz
06dbac6efd
Port font handling to fontdock and ttf-parser 🛳
...
- Use fontdock for indexing fonts and querying
- Typst binary now automatically indexes and uses system fonts in addition to a fixed font folder!
- Removes subsetting support for now (was half-finished anyways, plan is to use harfbuzz for subsetting in the future)
- Adds font width configuration support
2020-08-01 00:10:54 +02:00
Laurenz
bbcdeb128c
Move, rename and switch some things (boring) 🚚
...
- Problems -> Diagnostics
- Position -> Pos
- offset_spans -> Offset trait
- Size -> Length (and some more size types renamed)
- Paper into its own module
- scope::Parser -> parsing::CallParser
- Create `Decorations` alias
- Remove lots of double newlines
- Switch from f32 to f64
2020-07-29 18:09:51 +02:00
Laurenz
9672d43200
Improve argument naming and fix grammar in comment ♻
2020-07-29 17:38:14 +02:00
Laurenz
53ca5a7fc5
Refactor parser 🚇
2020-07-27 13:47:29 +02:00
Laurenz
e2ef4f64e7
Rename errors to problems and make error! macro more ergonomic 🧼
...
Also adds a `warning!` macro.
2020-07-26 17:28:43 +02:00
Laurenz
02dc29d18a
Highlight bold / italic / monospace 🎨
2020-02-06 11:15:48 +01:00
Laurenz
751812f451
Serialize layouts with serde 🔠
2020-02-04 21:36:29 +01:00
Laurenz
e63ce52ae0
Merge `Parsed` and `Layouted` types into `Pass` with `Feedback` 🌝 🎢 🌚
2020-02-04 19:22:23 +01:00
Laurenz
5c11aa7223
Adapt for tonty and fix a few bugs 🚧
2020-02-04 11:22:00 +01:00
Laurenz
3150fd5643
Better Debug/Display and Derives 🧽
2020-02-03 12:22:02 +01:00
Laurenz
40ea35cbe7
Upgrade to new toddle interface 🐳
2020-02-03 10:37:50 +01:00
Laurenz
20fb4e7c37
Document everything 📜
2020-01-26 15:51:13 +01:00
Laurenz
0a087cd28b
Reorganize modules 🧱
2020-01-24 16:23:57 +01:00
Laurenz
78da2bdd5d
Decoupled function parser 🔗 [WIP]
2020-01-21 17:09:31 +01:00
Laurenz
95e6b078fe
Move to non-fatal errors 🪂 [WIP]
...
- Dynamic models instead of SyntaxTrees
- No more ParseResult/LayoutResult
- Errors and Decorations which are propagated to parent contexts
- Models are finally clonable
2020-01-19 21:53:24 +01:00
Laurenz
15ad30555b
Parser testing prototype 🥥
2020-01-14 20:17:50 +01:00
Laurenz
a8f711d49a
Checkpoint 🏁
2020-01-13 11:26:42 +01:00
Laurenz
c9fd39f37e
Define base fallback list ♾
2020-01-06 13:06:17 +01:00
Laurenz
a93b1ab003
Formatting 🛀
2020-01-06 12:50:20 +01:00
Laurenz
2ee5810fec
Asyncify font loading 🪐
2020-01-06 12:41:42 +01:00
Laurenz
f3e461b27c
Paper styles and scalable+default margins 📜
2019-12-15 15:09:09 +01:00
Laurenz
665b4d2aca
More consistent library code and functions 🎄
2019-12-13 23:59:01 +01:00
Laurenz
f549914ff8
Refine and rename layouting types 🛀
2019-12-12 23:33:26 +01:00
Laurenz
ff107cf3e7
Tidying up 🧹
2019-12-12 22:19:38 +01:00
Laurenz
a791ef1628
Pretty good stack layouter ✈
2019-12-11 22:06:54 +01:00
Laurenz
92586d3e68
Progressing stack layouter 🚊
2019-12-10 11:37:12 +01:00
Laurenz
7e98022435
Bad stack layouter 🚑
2019-12-09 13:29:04 +01:00
Laurenz
f5b104d0da
Rename crate `typst` -> `typstc` ✏
2019-12-05 20:29:55 +01:00
Laurenz
72a9631b03
Move arg parser into `FuncArgs` and create (incomplete) consistent map 🧭
2019-12-05 19:48:37 +01:00
Laurenz
f72b1505be
Unify error types ♾
2019-12-04 20:20:02 +01:00
Laurenz
5782b82770
Refactor layouting base ♻
2019-11-30 18:54:46 +01:00
Laurenz
b13ed627ff
Better error reporting 🚨
2019-11-30 14:10:35 +01:00
Laurenz
f24e9b44e0
Refined expansion model 🔛
2019-11-20 17:31:52 +01:00
Laurenz
1a6fb48bc5
Page style modification functions 📜
...
- `page.size`
- `page.margins`
2019-11-18 15:10:11 +01:00
Laurenz
467d7203ee
Remove top-level stack layouter from tree layouter 🗑
2019-11-17 11:53:59 +01:00
Laurenz
0917d89bb8
Generalize flex layouter 🎯
2019-11-15 19:55:47 +01:00
Laurenz
9473ae61e9
Generalize stack layouter 🎲
2019-11-15 13:05:25 +01:00
Laurenz
ccc4639c7d
Improve documentation comments 📜
2019-10-30 20:13:28 +01:00
Laurenz
b4be25e43b
Prettify peeking and rearrange syntax/parsing modules 🧶
2019-10-24 19:10:03 +02:00
Laurenz
991e879e1d
Extend stack layouts from vertical to horizontal flows ➡
2019-10-17 19:21:47 +02:00
Laurenz
f22f9513ae
Add pagebreak function ⏭
2019-10-17 10:12:34 +02:00
Laurenz
e87a34a4d0
Rearrange layouting contexts ♻
2019-10-16 22:32:40 +02:00
Laurenz
7c0899b537
Run rustfmt 🚿
2019-10-13 13:10:21 +02:00
Laurenz
5c04185892
Reformat some things 🧺
2019-10-13 13:09:39 +02:00
Laurenz
463e4ebd82
Refactor layout types 🚧
2019-10-13 12:08:07 +02:00
Laurenz
6f22e4f13c
Render debug boxes 🧭
2019-10-11 20:28:22 +02:00
Laurenz
c0e4fd55e6
Create test runner which renders layouts to images 🗺
2019-10-11 17:53:28 +02:00
Laurenz
8f788f9a4f
Add standard `align` function and support right-alignment ➡️
2019-10-10 23:38:03 +02:00
Laurenz
f22a307000
Extract into separate repository 🧱
2019-10-09 19:46:42 +02:00
Laurenz Mädje
b96a7e0cf3
Reuse font loader across compilations 🔋
2019-07-28 22:27:09 +02:00
Laurenz Mädje
19be053cc3
Create some benchmarks 📊
2019-07-28 21:03:33 +02:00
Laurenz Mädje
6c8b5caa9f
Improve subsetter testing ✔
2019-07-27 21:15:10 +02:00
Laurenz
5de92f6d5e
Add monospace syntax 📰
2019-06-22 17:01:32 +02:00
Laurenz
099ce71aba
Unify font classes + By-value-contexts ⚖
2019-06-22 15:32:19 +02:00
Laurenz
f6fe3b5cdd
Implement function layouting ✒
2019-06-22 12:25:01 +02:00
Laurenz
968e121697
Implement flex and box layouting 📏
2019-06-21 21:41:02 +02:00
Laurenz
b53ad6b1ec
Introduce flex layouting 🎈
2019-06-17 10:08:16 +02:00
Laurenz Mädje
236ebab23a
Add more fonts 📜
2019-06-02 19:51:37 +02:00
Laurenz Mädje
221934df4b
Add margins with basic box layouter 📖
2019-06-02 18:01:22 +02:00
Laurenz Mädje
c4eb4ee362
Fix some documentation 🚧
2019-06-02 12:39:59 +02:00
Laurenz
c38e17d91f
Thoroughly improve documentation 📝
2019-05-26 21:59:33 +02:00
Laurenz
b3734bbc04
Restructure engine into modular layouter 🍂
2019-05-24 12:24:10 +02:00
Laurenz
e3215fa3b9
Unify parsing and typesetting functions. 🗳
2019-05-20 11:36:31 +02:00
Laurenz
37c336063b
Simplify the parsing model 🔋
2019-05-01 19:47:43 +02:00
Laurenz
27947e212c
Require scope for parser ♻
2019-05-01 17:19:27 +02:00
Laurenz
9d605c3128
Remove the concept of words from tokenization 🎈
2019-04-30 09:20:22 +02:00
Laurenz
c384e52480
Improve code quality 🎫
2019-04-29 13:41:00 +02:00
Laurenz
d514a05af1
Make parse tokens more static and efficient 🗜
2019-04-29 12:43:58 +02:00
Laurenz
f279c52b50
Simple dynamic, scoped function parsing 📥
2019-04-29 00:12:36 +02:00
Laurenz
6c29e45ce2
Implement paragraphs 📜
2019-04-01 13:33:54 +02:00
Laurenz
3b4b55c59e
Implement bold and italics 📜
2019-04-01 12:25:31 +02:00
Laurenz
e589843966
Implement font fallback 🚀
2019-04-01 10:01:42 +02:00
Laurenz
b24bac7cae
Fix bug with special characters 🚧
2019-03-31 17:18:59 +02:00
Laurenz
5ca303ecad
Make things more consistent ♻
2019-03-30 20:58:46 +01:00
Laurenz
adfd7dd073
Create complex font_info macro 🚀
2019-03-30 20:13:30 +01:00
Laurenz
e6e5aad7ce
Refactor font providing ⚙
2019-03-30 18:47:17 +01:00
Laurenz
db96ecae94
Move some types into better places 🧱
2019-03-30 16:58:45 +01:00
Laurenz
f683bba400
Create error_type! macro ✔
2019-03-30 16:42:52 +01:00
Laurenz
10994ebac3
Move exporting into seperate module 🧱
2019-03-30 16:01:45 +01:00
Laurenz
83dd762f67
Font providers 🚀 + better docs 📜
2019-03-14 19:54:38 +01:00
Laurenz
22ea09d9c1
Better error handling 🌍
2019-03-14 17:10:06 +01:00
Laurenz
aae8a3a77e
Unified font error type 🔗
2019-03-14 15:35:01 +01:00
Laurenz
9b3386f8a3
Hide subengines and improve Compiler API 🕳
2019-03-14 15:15:09 +01:00
Laurenz
89205368c2
Fix space handling for multiline 🔨
2019-03-13 19:15:51 +01:00
Laurenz
0c87c0c5a5
Basic multiline support 📜
2019-03-13 18:42:33 +01:00
Laurenz
107450ee5c
Restructure typeset crate ✈
2019-03-11 22:15:34 +01:00
Laurenz
67281c4f46
Redesign document representation 🧱
2019-03-11 17:24:00 +01:00
Laurenz
06101492dc
Implement subsetting engine 🚀
2019-03-03 15:00:27 +01:00
Laurenz
6e9671f149
Write PDFs with extern fonts 🌏
2019-02-26 14:02:18 +01:00
Laurenz
95d7edeb8d
Enhance content streams and pdf example 📝
2019-02-25 18:49:26 +01:00
Laurenz
29229c4002
Implement parsing trait for str ♻
2019-02-20 17:36:34 +01:00
Laurenz
b2ea22b25b
Vastly improve documentation 📝
2019-02-19 11:31:03 +01:00
Laurenz
c8d3ea89cd
Enhance docs (i.a. with examples) 📝
...
- Complete examples for pdf and opentype crates
- Removes allow-unused attributes and fixes their warnings
- Various small improvements
2019-02-17 00:08:46 +01:00
Laurenz
ae3af533ff
Extract opentype parser into crate 🧱
2019-02-16 20:17:31 +01:00
Laurenz
5a600eb354
Move crate into workspace subfolder
2019-02-12 21:31:35 +01:00