# rsff rsff` (scanlation file format) is the core library of an application designed to facilitate the work of teams translating content such as manga, manhwa, manhua, webtoons, etc. ## Some Examples: ```rust use rsff::Document; use rsff::balloon::Balloon; // Create a default document. let mut d: Document = Document::default(); // Create a default balloon. let mut b: Balloon = Balloon::default(); // Add content to the balloon. b.tl_content.push("This is a translation line.".to_string()); // Add balloon to the document. d.balloons.push(b); ``` ## Basic Raw SFF XML File: ```xml Num 9 6 0 2 2 num nam numnam num ```