yuck 0.1.0

Implementation of the yuck language, the declarative UI description language used by eww
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
source: src/parser/element.rs
expression: "Element::<Ast, Ast>::from_ast(parser.parse(0, lexer).unwrap()).unwrap()"

---
Element {
    name: "box",
    attrs: {
        "baz": "hi",
        "bar": "12",
    },
    children: [
        foo,
        (bar),
    ],
    span: 0..33,
}