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 b104ce4 commit 83e9278Copy full SHA for 83e9278
README.md
@@ -64,6 +64,7 @@ Output:
64
65
An options object can be passed as the second argument to `cssToHtml()` to customize the behaviour of the HTML generator.
66
67
-| Option | Values | Description |
68
-| :----------- | :------------------- | :---------- |
69
-| `duplicates` | `preserve`, `remove` | |
+| Option | Values | Description |
+| :----------- | :--------- | :---------- |
+| `duplicates` | `preserve` | Preserve duplicate elements. Eg: <br/> `button {} button {}` <br/> Will become: <br/> `<button></button><button></button>`. |
70
+| | `remove` | Remove duplicate elements. Eg: <br/> `button {} button {}` <br/> Will become: <br/> `<button></button>`. |
0 commit comments