acdc-parser 0.9.0

`AsciiDoc` parser using PEG grammars
Documentation
1
2
3
4
5
6
7
8
use crate::AttributeValue;

#[derive(Debug)]
pub(crate) struct AttributeEntry<'a> {
    pub(crate) set: bool,
    pub(crate) key: &'a str,
    pub(crate) value: AttributeValue<'a>,
}