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 0bb76e4 commit bd27aeeCopy full SHA for bd27aee
1 file changed
readme.md
@@ -35,17 +35,20 @@ $ posthtml --help
35
$ posthtml inputFolder/*.html -o outputFolder
36
$ posthtml inputFolder/**/*.html -o outputFolder
37
```
38
->**Note:** This package does not respect the order of patterns. First, all the negative patterns are applied, and only then the positive patterns.
39
40
-```js
41
-module.exports = {
+## Options
+```json
+{
42
+ input: 'src/*.html',
43
+ output: 'dist',
44
plugins: {
45
'posthtml-plugin-name': {
46
property: 'value'
47
}
48
49
};
50
51
+> example config *`.posthtmlrc`*
52
53
[posthtml-url]: http://github.com/posthtml/posthtml
54
0 commit comments