All Versions
15
Latest Version
Avg Release Cycle
51 days
Latest Release
2367 days ago

Changelog History
Page 1

  • v0.9.2 Changes

    October 26, 2017

    Oct 26, 2017

    • ๐Ÿ›  Fix issue where elements with text (eg, title Hello) produce errors.
  • v0.9.1 Changes

    October 19, 2017

    Oct 19, 2017

    • ๐Ÿ›  Fix problem with value-less attributes (eg, input(required type="text")).
  • v0.9.0 Changes

    October 18, 2017

    Oct 18, 2017

    • โš  #10 - Fix Elixir 1.5.2 warnings about String.rstrip/1.
    • #8 - Fix $ not being allowed in plain texts. (@cubeguerrero, #7)
  • v0.8.0 Changes

    March 14, 2017

    Mar 14, 2017

    • ๐Ÿ›  [#6] - Fixes consecutive if-else blocks.
  • v0.7.3 Changes

    August 28, 2016

    Aug 29, 2016

    • ๐Ÿ›  [#5] - Fixes problems with some nodes rendering as text.
  • v0.7.2 Changes

    August 28, 2016

    Aug 29, 2016

    • ๐Ÿ›  Fix multiline dot blocks (script.).
  • v0.7.1 Changes

    July 31, 2016

    Jul 29, 2016

    โš  Squash Elixir warnings; no functional changes.

  • v0.7.0 Changes

    July 29, 2016

    Jul 29, 2016

    ๐Ÿ‘Œ Support improved multiline. Write =, != or - immediately followed by a newline. All text indented inside it will be treated as part of an Elixir expression.

    =
      render App.MyView, "index.html",
      [conn: @conn] ++
      assigns
    

    Error messages have also been improved.

  • v0.6.0 Changes

    July 25, 2016

    Jul 25, 2016

    ๐Ÿ›  Fix: Line comments have been changed from -// to //- (had a mistake in implementing that, sorry!)

  • v0.5.0 Changes

    July 25, 2016

    Jul 25, 2016

    ๐Ÿ‘ HTML comments are now supported. They are just like -// comments, but they will render as <!-- ... -->.

    // This is a comment
      (Anything below it will be part of the comment)