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
7 changes: 6 additions & 1 deletion docs/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ Optional:
files will still be available on typst universe to link to from the README.\
To be used for large support files like images or PDF documentation that would
otherwise unnecessarily increase the bundle size. Don't exclude the README or
the LICENSE, see [what to exclude].
the LICENSE, see [what to exclude]. Globs provided here have the same semantics
as lines in a [gitignore file](https://git-scm.com/docs/gitignore). That is,
`example-*` matches any _file or directory_ whose name begins with `example-`
_recursively_ in any directory, while `/assets*/` matches any _directory_
whose name begins with `assets` in the _top-level_ directory (but not in its
subdirectories).

Packages always live in folders named as `{name}/{version}`. The name and
version in the folder name and manifest must match. Paths in a package are local
Expand Down