You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-11Lines changed: 26 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Enables CSS colors to be used by their names within a Typst document.
11
11
-[x] Check and/or replace `LICENSE` by something that suits your needs
12
12
-[x] Fill out `typst.toml`
13
13
- See also the [typst/packages README](https://github.com/typst/packages/?tab=readme-ov-file#package-format)
14
-
-[] Adapt Repository URLs in `CHANGELOG.md`
14
+
-[x] Adapt Repository URLs in `CHANGELOG.md`
15
15
- Consider only committing that file with your first release, or removing the "Initial Release" part in the beginning
16
16
-[ ] Adapt or deactivate the release workflow in `.github/workflows/release.yml`
17
17
- to deactivate it, delete that file or remove/comment out lines 2-4 (`on:` and following)
@@ -21,8 +21,8 @@ Enables CSS colors to be used by their names within a Typst document.
21
21
-[ ] on this repo, create a secret `REGISTRY_TOKEN` (at `https://github.com/[user]/[repo]/settings/secrets/actions`) that contains the so created token
22
22
23
23
if configured correctly, whenever you create a tag `v...`, your package will be pushed onto a branch on the `REGISTRY_REPO`, from which you can then create a pull request against [typst/packages](https://github.com/typst/packages/)
24
-
-[] remove/replace the example test case
25
-
-[] (add your actual code, docs and tests)
24
+
-[x] remove/replace the example test case
25
+
-[x] (add your actual code, docs and tests)
26
26
-[ ] remove this section from the README
27
27
28
28
## Getting Started
@@ -32,23 +32,38 @@ These instructions will get you a copy of the project up and running on the typs
32
32
```typ
33
33
#import "@preview/css-colors:0.1.0": *
34
34
35
-
#rect(fill: css("darkorchid"))
35
+
Normal text may be #text(fill: css("crimson"))[colored so.]
A step by step guide that will tell you how to get the development environment up and running. This should explain how to clone the repo and where to (maybe a link to the typst documentation on it), along with any pre-requisite software and installation steps.
47
+
Set up your development environment by following these steps:
46
48
47
-
```
48
-
$ First step
49
-
$ Another step
50
-
$ Final step
51
-
```
49
+
1.**Typst**
50
+
Install Typst (version 0.13.0 or higher) using the [official installation instructions](https://github.com/typst/typst?tab=readme-ov-file#installation).
51
+
52
+
53
+
1.**Just**
54
+
Install [Just](https://just.systems/man/en/introduction.html) using a package manager or by downloading a pre-built binary. For more information, refer to the [available packages](https://just.systems/man/en/packages.html).
55
+
56
+
1.**tytanic**
57
+
Install [tytanic](https://tingerrr.github.io/tytanic/index.html) by following the [quickstart installation guide](https://tingerrr.github.io/tytanic/quickstart/install.html).
58
+
59
+
1.**Clone the Repository**
60
+
Clone the project repository to your local machine:
+ The maroon color in Typst differs from the Maroon color defined in CSS, as evidenced by their distinct hex codes. To emphasize this distinction, the CSS `Maroon` is intentionally capitalized with an initial uppercase letter.
0 commit comments