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 4ce5f5c commit 0be1aafCopy full SHA for 0be1aaf
README.md
@@ -2,6 +2,9 @@ Special thanks to the author of the idea [akopyl](https://github.com/anatolykopy
2
3
## Installation
4
5
+> **Attention!** <br>
6
+> This library works with the APIs provided by `node.js` .
7
+
8
```shell
9
npm i css2html
10
```
@@ -12,6 +15,10 @@ yarn add css2html
12
15
13
16
```js
14
17
import { CssToHtml } from 'css2html';
18
19
+let result = new CssToHtml({ css: 'div{}' });
20
21
+console.log(result.outputHTML);
22
23
24
## What is this?
0 commit comments