1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

added doc\zstd_manual.html

This commit is contained in:
Przemyslaw Skibinski
2016-10-24 16:07:53 +02:00
parent 984b66cd72
commit 86d9424c81
2 changed files with 535 additions and 1 deletions

View File

@ -13,7 +13,7 @@ The format of recognized comment blocks is following:
Moreover:
- `ZSTDLIB_API` is removed to improve readability
- `typedef`s are detected and included even if uncommented
- `typedef` are detected and included even if uncommented
- comments of type `/**<` and `/*!<` are detected and only function declaration is highlighted (bold)
@ -23,3 +23,9 @@ The program requires 3 parameters:
```
gen_html [zstd_version] [input_file] [output_html]
```
To compile program and generate zstd manual we have used:
```
make
./gen_html.exe 1.1.1 ../../lib/zstd.h zstd_manual.html
```