Description
The LaTeX template SpecialSymbolBlock fails to end LaTeX commands with empty group. It should be changed from
#elseif ($latex.block.getSymbol() == '<') \textless## #elseif ($latex.block.getSymbol() == '>') \textgreater## #elseif ($latex.block.getSymbol() == '|') \textbar##
to
#elseif ($latex.block.getSymbol() == '<') \textless{}## #elseif ($latex.block.getSymbol() == '>') \textgreater{}## #elseif ($latex.block.getSymbol() == '|') \textbar{}##
Otherwise , e.g., "<bla>" translates to "\textlessbla\textgreater" with the undefined command "\textlessbla".