htmltoadf 0.1.6

An HTML to Atlassian Document Format (ADF) converter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod colors;
#[cfg(test)]
mod combination;
mod empty;
mod headings;
mod image;
mod lists;
mod marks;
mod paragraphs;
use crate::convert_html_str_to_adf_str;

#[allow(dead_code)]
fn assert_output_json_eq(html: &str, expected: serde_json::Value) {
    let converted = convert_html_str_to_adf_str(html.to_string());
    assert_eq!(expected.to_string(), converted);
}