recital / exporters / ink / test / expected / logic-strings.ink
logic-strings.ink
Raw
-> _recital_id_0000
=== _recital_id_0000 ===
VAR test="foo"
This should turn into another string.
“This should have smart quotes.”
— This should still convert.
~ test = "bar"
{
- test == "foo":
This should never come true.
- test == "bar":
This should come true.
}
 -> END