No description
Find a file
Chris Wong c7ab906ad9 Guard against trailing tokens in Rust exprs
Currently, the following parses:

    $for x in y.iter() #$%!INVALID~SYNTAX!^&* {
    }

This is because the Rust parser only consumes enough to parse a single
expression (in this case `y.iter()`), ignoring all the nonsense after
it.

With this patch, we check that the parser has consumed *all* tokens
before yielding a result, ensuring that invalid syntax (like the snippet
above) is not ignored.
2015-03-27 13:57:58 +13:00
maud Release v0.3.2 2015-03-21 13:40:08 +13:00
maud_macros Guard against trailing tokens in Rust exprs 2015-03-27 13:57:58 +13:00
.gitignore First commit 2014-12-17 21:11:56 +13:00
.travis.yml Simplify Travis script 2015-02-27 17:26:14 +13:00
LICENSE-APACHE First commit 2014-12-17 21:11:56 +13:00
LICENSE-MIT First commit 2014-12-17 21:11:56 +13:00
maud.png HTML5 rocks 2015-01-11 15:05:42 +13:00
README.md Link to the book 2015-03-14 21:28:04 +13:00
upload-docs Autodocification 2015-01-14 17:33:24 +13:00

HTML5 rocks. maud Build Status Cargo

Maud is a macro for generating HTML.

Documentation

API reference