Here is my code:
{template .someTemplate}
{@param? icon : string} /** CSS class that loads and styles the icon */
{@param? headlineHtml : any} /** Headline text with optional html for styling */
{@param? textHtml : any} /** Subtext with optional html for styling */
{@param? buttonText : string} /** The call to action text for the button */
{@param? rejectButtonText : string} /** The text for choosing to reject the call to action */
....
When I try to compile I get an error saying:
Exception in thread "main" com.google.template.soy.base.SoySyntaxException: In file ./myfile.soy:7, template com.namespace.someTemplate: Not all code is in Soy V2 syntax (found tag {@param? icon : string} not in Soy V2 syntax).`
The only info I've found online seems to suggest this is correct syntax (per Google's site here, per this cheat sheet I found), though, and Googling for "soy v2" has not given me any results that explain what is correct Soy V2 syntax.
What's the correct way to define these parameters?