Skip to content

Instantly share code, notes, and snippets.

@tstone
Last active August 29, 2015 14:00
Show Gist options
  • Save tstone/cb57355fc70cf6661cd9 to your computer and use it in GitHub Desktop.
Save tstone/cb57355fc70cf6661cd9 to your computer and use it in GitHub Desktop.
Twirl conversions
// bool.scala.html
@(param: Boolean)
<h1>Value: @param</h1>
// index.scala.html
@bool(Some(false))
@bool("false")
// Rendered output:
<h1>Value: true</h1>
<h1>Value: true</h1>
// Why:
https://github.com/playframework/twirl/blob/master/api/src/main/scala/play/twirl/api/TemplateMagic.scala#L21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment