We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9470fd commit d29c831Copy full SHA for d29c831
1 file changed
packages/patternengine-node-nunjucks/lib/engine_nunjucks.js
@@ -85,15 +85,6 @@ var engine_nunjucks = {
85
},
86
87
// find and return any Nunjucks style includes/imports/extends within pattern
88
- // EXAMPLES OF NUNJUCKS STYLE PARTIAL INCLUDES
89
- // {% include "atoms-parent" %} [WORKS]
90
- // {% include 'atoms-parent' %} [WORKS]
91
- // {% include "atoms-parent" ignore missing %} [WORKS]
92
- // {% import "atoms-parent" as forms %} [WORKS]
93
- // {% from "atoms-parent" import field, label as description %} [WORKS]
94
- // {% extends "atoms-parent" %} [WORKS]
95
- // {% extends parentTemplate %}
96
- // {% extends name + ".njk" %}
97
findPartials: function findPartials(pattern) {
98
var matches = pattern.template.match(this.findPartialsRE);
99
return matches;
0 commit comments