Ed Page

Results 596 issues of Ed Page

Example test: ```rust assert_eq!(Nil, filters!(first, v!([]))); ``` - [Rust implementation](https://github.com/cobalt-org/liquid-rust/blob/master/src/filters/mod.rs) - [Ruby implementation](https://github.com/Shopify/liquid/blob/master/lib/liquid/standardfilters.rb) - [Relevant tests](https://github.com/cobalt-org/liquid-rust/search?q=liquid+254&unscoped_q=liquid+254) - Once this is working, ideally the test will start failing. We would just...

bug
good first issue
std-compatibility

Options - BTreeMap - HashMap with FNV - Hashbrowns See - https://www.reddit.com/r/rust/comments/7rgowj/hashmap_vs_btreemap/?st=jpbauj1i&sh=53b29903 - https://www.reddit.com/r/rust/comments/a42gzd/the_swiss_army_knife_of_hashmaps_a_deep_dive_into/?st=jpeldp4k&sh=31d9b004

enhancement

Example test ```rust assert_render_error!("{x | somefilter1 | upcase | somefilter2}", v!({"x": "foo"})); ```

bug
std-compatibility

Example test ```rust assert_template_result!( "else", "{% case a.empty? %}{% when true %}true{% when false %}false{% else %}else{% endcase %}" ); ``` Related #225 Note: we'll already need to deal with...

question
std-compatibility

Example test: ```rust assert_template_result!( " 0 1 2 3 ", "{% for item in (a..3) %} {{item}} {% endfor %}", v!({"a": "invalid integer"}), ); ```

bug
question
std-compatibility

Example test ```rust assert_template_result!( "", "{% for char in characters %}I WILL NOT BE OUTPUT{% endfor %}", v!({"characters": ""}), ); ```

bug
std-compatibility

liquid-rust version: rust version: OS:

enhancement
std-compatibility

Example test: ```rust assert_template_result!("0", r#"{{ "foo" | times:4 }}"#); ```

bug
question
std-compatibility

Example test: ```rust assert_template_result!("2.0", r#"{{ "1" | plus:"1.0" }}"#); ```

bug
std-compatibility

Building on #232, when embedded inside of Cobalt, the liquid will come after the frontmatter, for example ```yaml --- title: Foo --- # {{ page.title }} Hello World! ``` As...

enhancement