Name Date Size #Lines LOC

..--

.gitignoreH A D25-Apr-202572 66

README.mdH A D25-Apr-20251 KiB4930

archive.jsH A D25-Apr-20257.1 KiB227152

copy-local-assets.shH A D25-Apr-2025310 148

extract-link-targets.jsH A D25-Apr-20255.9 KiB190131

fix-tocs.jsH A D25-Apr-20253.4 KiB12883

header.htmlH A D25-Apr-2025547 1413

make-tr-archive.shH A D25-Apr-2025397 188

package-lock.jsonH A D25-Apr-202554.1 KiB1,4251,424

package.jsonH A D25-Apr-2025711 2625

tr35.cssH A D25-Apr-2025472 3224

README.md

1# Unicode TR35 archiver
2
3## What this does
4
5- render `../../../docs/ldml/*.md` into `.html`
6- add some CSS and fixup the HTML a little bit
7- The goal is to create .html suitable to end up at, for example, <https://www.unicode.org/reports/tr35/tr35-61/tr35.html>
8
9## Prerequisites
10
11Node.js (Tested with v12)
12
13## How to use
14
15- To generate the .zip file: (Unix)
16
17```shell
18$ bash make-tr-archive.sh
19```
20
21You will end up with HTML files under `dist/` and a zipped up `./tr35.zip` archive.
22
23- To generate, and also serve locally via a little web server (Unix):
24
25```shell
26$ npm install
27$ npm run serve
28```
29
30`reports.css` gets downloaded locally so that the relative link ( `../reports.css`) within the HTML will work.
31
32
33## Updating ToC
34
35```shell
36$ npm install
37$ npm run fix-tocs
38```
39
40This will update the tr .md files in place.
41### Copyright
42
43Copyright &copy; 1991-2021 Unicode, Inc.
44All rights reserved.
45[Terms of use](https://www.unicode.org/copyright.html)
46
47See [../../../README.md](../../../README.md) for full project information.
48
49