We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a65559 commit 79abc6fCopy full SHA for 79abc6f
README.md
@@ -1,3 +1,26 @@
1
# CSS-HTML-Minify
2
3
-- HTML & CSS Minify Lib & App based on Regexes & parallel MultiReplaces.
+- 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