Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Pretext doesn't try to be a full font rendering engine (yet?). It currently targ
- Tabs follow the default browser-style `tab-size: 8`
- `{ wordBreak: 'keep-all' }` is supported too. It behaves like you'd expect for CJK/Hangul and no-space mixed Latin/numeric/CJK text, while keeping the same `overflow-wrap: break-word` fallback for overlong runs.
- `system-ui` is unsafe for `layout()` accuracy on macOS. Use a named font.
- Runtime requires `Intl.Segmenter` and Canvas 2D text measurement. Browsers or runtimes without `Intl.Segmenter` are currently unsupported.
- Runtime requires `Intl.Segmenter`, Canvas 2D text measurement, and ES2018 Unicode property escapes (`\p{...}`). Browsers or runtimes without `Intl.Segmenter` are currently unsupported; older runtimes without `\p{...}` support fail earlier at module-load time with a `SyntaxError`.
- CSS text features outside the canvas `font` shorthand, such as `font-optical-sizing`, `font-feature-settings`, and standalone `font-variation-settings`, are not modeled separately. Variable-font axes only help when the active axis is reflected in the canvas font string, for example via weight.

## Develop
Expand Down