scalasti icon indicating copy to clipboard operation
scalasti copied to clipboard

A Scala interface to the Java StringTemplate library

Results 5 scalasti issues
Sort by recently updated
recently updated
newest added

The underlying subclass was being lost by STGroup after the first call was made to registerRenderer. This passes a function to create a new underlying group instead of using inheritence.

https://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html

Hi, I am using your wrapper and found a behavior that is strange to me. If I have an attribute in my template like $data$ or $data.name$ and I will...

I tried following: ``` case class Hobby(name:String) case class Person(name:String, hobbies:List[Hobby]) val templateString = """ |foo(people) ::= > """.stripMargin val tgroup = STGroupString(templateString) tgroup.instanceOf("foo").map { template => println( template.add ("people",...