asai 0.1.2

Library for .ass file parsing.
Documentation
1
2
3
4
5
6
7
8
use crate::structure::FromLine;

pub mod iter;
pub mod structure;

pub fn parse_str(s: &str) -> structure::Ass {
    structure::Ass::from_elements(iter::parse_str(s))
}