You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, a transformer can only be associated with a tag. Certain transforms should be executed once for the entire template.
We should add support for a new transformer property within a marko.json file:
marko.json:
{
"transformer": "./my-transformer.js"
}
Template-level transformers should be invoked once after parsing, but before traversing the tree to run transformers on HTML elements. A template-level transformer should be invoked with only one argument that is the CompilerContext:
Currently, a transformer can only be associated with a tag. Certain transforms should be executed once for the entire template.
We should add support for a new
transformer
property within amarko.json
file:marko.json
:Template-level transformers should be invoked once after parsing, but before traversing the tree to run transformers on HTML elements. A template-level transformer should be invoked with only one argument that is the
CompilerContext
:The text was updated successfully, but these errors were encountered: