bamboo-soy icon indicating copy to clipboard operation
bamboo-soy copied to clipboard

An intellij plugin supporting Closure Template language (Soy)

Results 6 bamboo-soy issues
Sort by recently updated
recently updated
newest added

See https://github.com/google/closure-templates/blob/master/documentation/reference/file-declarations.md ``` import * as fooMagic from 'path/to/soy/file/foo.soy'; ... {call fooMagic.button} ... {/call} ``` Right now there's parsing error on space after `import`: `SoyTokenType.{ expected, got '* as fooMagic`.

bug

For the common use case of using deltemplates during the development of a new version of a page, then cleaning up after release, an automatic inlining of deltemplates would be...

enhancement

https://github.com/google/closure-templates/blob/master/documentation/reference/element-composition.md ``` {template example2 kind="html"} // Element composition call {/template} ``` Right now there is a parsing error on ``: `Closing tag matches nothing`. FWIW, this error might be coming...

enhancement

Hi there, I have a resource bundle property that is being used only in one .soy file but IntelliJ is saying that that property is not being used. Is this...

When using documentation comments like suggested in the [Closure Templates Documentation](https://developers.google.com/closure/templates/docs/commands#doc-comments-for-params) the comments are not indented, which looks a bit odd. ``` {template .template} /* My comment. */ {@param p1:...

Closure templates has a potentially dangerous [white space collapsing policy](https://developers.google.com/closure/templates/docs/concepts): > Consecutive lines are joined according to the following heuristic: if the join location borders a template or HTML tag...