Skip to content

Commit ed281fd

Browse files
committed
fix plugin name
1 parent 75ee006 commit ed281fd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ var parser = require('posthtml-parser');
22
var fs = require('fs');
33
var path = require('path');
44

5-
module.exports = function posthtmlInclude(options) {
5+
module.exports = function (options) {
66
options = options || {};
77
options.root = options.root || './';
88
options.encoding = options.encoding || 'utf-8';
99

10-
return function(tree) {
10+
return function posthtmlInclude(tree) {
1111
tree.match({ tag: 'include' }, function(node) {
1212
var src = node.attrs.src || false,
1313
content;

0 commit comments

Comments
 (0)