Alexey Golubev

Results 4 issues of Alexey Golubev

Update to https://i.imgur.com/FjhA208.png

enhancement

Ini structure must support ### variable comment character ```rust let ini = Ini::new() .set_comment_symbol('#') .add_comment("comment line") .section("demo") .item("a", 1); ``` generate (after serialization) ```text # comment line [demo] a =...

feature

This code (example syntax) ```rust let ini = Ini::new() .add_comment("This is comment before section") .section("params") .add_comment("This is comment before item") .item("foo", 3.14) .item_with_comment("bar", 2.71, "inline comment"); ``` generate (after serialization)...

feature

Ini struct can parse comment lines

feature