We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{ tags: [] }
the is tags options written directly to mustache instance before pipe working so when gulp pipe run just the last definition work.
if (options.tags) { mustache.tags = options.tags }
Example:
return Combine( mustache(templateObject2,{ tags: ['${', '}'] }), mustache(templateObject1,{ tags: ['{{', '}}'] // just that one will work/ }),
The text was updated successfully, but these errors were encountered:
@perymimon what is Combine? And do you have a concrete use case for your example?
Combine
Sorry, something went wrong.
like you see in the example. i use different match brackets for two differents objects
No branches or pull requests
the is tags options written directly to mustache instance before pipe working so when gulp pipe run just the last definition work.
Example:
The text was updated successfully, but these errors were encountered: