Skip to content

Commit 79abc6f

Browse files
Init
1 parent 1a65559 commit 79abc6f

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
11
# CSS-HTML-Minify
22

3-
- HTML & CSS Minify Lib & App based on Regexes & parallel MultiReplaces.
3+
- HTML & CSS Minify Lib & App based on Regexes & parallel MultiReplaces. Pull Requests welcome.
4+
5+
6+
# Use
7+
8+
```nim
9+
import css_html_minify
10+
echo minifyHtml(readFile("example.html")) ## HTML
11+
echo minifyCss(readFile("example.css")) ## CSS
12+
```
13+
14+
- No OS-specific code, so it should work on Linux, Windows and Mac. Not JS.
15+
- Run the module itself for an Example.
16+
- If you know Regex or Minification it needs Pull Requests to improve!
17+
18+
19+
# Install
20+
21+
- `nimble install css_html_minify`
22+
23+
24+
# Requisites
25+
26+
- None

0 commit comments

Comments
 (0)