LukeTemp

Results 3 issues of LukeTemp

Issue: https://github.com/SirAnthony/slpp/issues/33 Before: ``` >>> lua.decode("""{ SizeZ = .8, }""") {'SizeZ': '.8'} >>> lua.decode("""{ SizeZ = 0.8, }""") {'SizeZ': 0.8} ``` After: ``` >>> lua.decode("{ num = .8, }") {'num':...

If decimals between 0 and 1 are written in shorthand, e.g., .8 rather than 0.8, then they are parsed as strings: `>>> lua.decode("""{ SizeZ = .8, }""")` `{'SizeZ': '.8'}` `>>>...

In Yesod we have the WidgetFor Monad, within which we can use .julius files to interpolate Haskell values into Javascript for dynamic webpages. For more frontend-heavy pages, it would be...