blob: 6345ff86bfeb6e4f78fcde8e9b08a506b50d51a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# My note
## Commands
Generate the site.
```
$ ./nuldoc build
```
Create a new post.
```
$ ./nuldoc new post
```
Create a new slide.
```
$ ./nuldoc new slide
```
Update PDF.js.
```
$ curl -o static/pdf.min.mjs https://unpkg.com/pdfjs-dist@5.4.449/build/pdf.min.mjs
$ curl -o static/pdf.worker.min.mjs https://unpkg.com/pdfjs-dist@5.4.449/build/pdf.worker.min.mjs
```
|