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 75ee006 commit ed281fdCopy full SHA for ed281fd
1 file changed
index.js
@@ -2,12 +2,12 @@ var parser = require('posthtml-parser');
2
var fs = require('fs');
3
var path = require('path');
4
5
-module.exports = function posthtmlInclude(options) {
+module.exports = function (options) {
6
options = options || {};
7
options.root = options.root || './';
8
options.encoding = options.encoding || 'utf-8';
9
10
- return function(tree) {
+ return function posthtmlInclude(tree) {
11
tree.match({ tag: 'include' }, function(node) {
12
var src = node.attrs.src || false,
13
content;
0 commit comments