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
Soy adds debug metadata to generated tags if debugSoyTemplateInfo is turned on.
Like:
{print 'Boo!'}<br>
is evaluated to
output.append("Boo!<br")
if false {
output.append(" data-debug-soy=\"soy.examples.features.demoPrint ./examples/features.soy:96\"")}
output.append(">")
Now this feature is turned off so source will be full of if false {..} lines.
Decide to eliminate debug feature entirely or keep it with better control.
The text was updated successfully, but these errors were encountered:
Soy adds debug metadata to generated tags if
debugSoyTemplateInfo
is turned on.Like:
is evaluated to
Now this feature is turned off so source will be full of
if false {..}
lines.Decide to eliminate debug feature entirely or keep it with better control.
The text was updated successfully, but these errors were encountered: