Minor clarifications

This commit is contained in:
Wilson Lin 2021-08-08 01:12:41 +10:00
parent b80cc0bbd2
commit 4017bdb381
2 changed files with 6 additions and 6 deletions

View File

@ -1,14 +1,14 @@
# minify-html
An HTML minifier meticulously optimised for both speed and effectiveness, written in Rust.
Available on:
<h1>
minify-html
<img width="24" src="./icon/cli.png">
<img width="24" src="./icon/java.png">
<img width="24" src="./icon/nodejs.png">
<img width="24" src="./icon/python.png">
<img width="24" src="./icon/ruby.png">
<img width="24" src="./icon/rust.png">
</h1>
An HTML minifier meticulously optimised for both speed and effectiveness, written in Rust.
- Advanced minification strategy beats other minifiers while being much faster.
- Uses SIMD searching, direct tries, and lookup tables.

View File

@ -8,7 +8,7 @@ To see some complex inputs, check out the [various fuzzing inputs](../fuzz/in).
## Limitations
- Input must be UTF-8.
- Input must be valid UTF-8 without BOM.
- All HTML is interpreted as HTML5.
- [Escaped and double-escaped](./Script%20data.md) script content are not supported.