Skip to content

Commit 857e508

Browse files
committed
Adds collection and outline to use default behavior
1 parent 62b5233 commit 857e508

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

tags/tags.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
module.exports = {
2-
subchildren: require('./subchildren')
3-
};
2+
subchildren: require('./subchildren'),
3+
collection: {
4+
add: function( line, curData, scope, objects, currentWrite, siteConfig ){
5+
return siteConfig.tags._default.add.apply(this, arguments);
6+
}
7+
},
8+
outline: {
9+
add: function( line, curData, scope, objects, currentWrite, siteConfig ){
10+
return siteConfig.tags._default.add.apply(this, arguments);
11+
}
12+
}
13+
};

0 commit comments

Comments
 (0)