1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#![feature(custom_attribute, nll)]
#[macro_use]
extern crate maplit;
#[macro_use]
extern crate serde_derive;
#[allow(unused)]
#[macro_use]
extern crate wasm_typescript_definition;
pub mod commands;
pub mod markdown;
#[cfg(not(target_arch = "wasm32"))]
pub mod simple_ws;
use htmlescape::encode_minimal;
use oatie::doc::*;
use oatie::rtf::*;
use serde_json;
use std::collections::HashMap;
fn html_start_tag(tag: &str, attrs: HashMap<String, String>) -> String {
format!(
"<{} {}>",
tag,
attrs
.into_iter()
.map(|(k, v)| format!(
"{}={}",
k,
serde_json::to_string(&v).unwrap_or("".to_string())
))
.collect::<Vec<String>>()
.join(" ")
)
}
pub fn doc_as_html(doc: &DocSpan<RtfSchema>) -> String {
use oatie::doc::*;
let mut out = String::new();
for elem in doc {
match elem {
&DocGroup(ref attrs, ref span) => {
out.push_str(&match attrs {
Attrs::Para => {
html_start_tag("div", hashmap!{ "data-tag".into() => "p".into() })
}
Attrs::Code => {
html_start_tag("div", hashmap!{ "data-tag".into() => "pre".into() })
}
Attrs::Html => {
html_start_tag("div", hashmap!{ "data-tag".into() => "html".into() })
}
Attrs::Header(level) => {
html_start_tag("div", hashmap!{ "data-tag".into() => format!("h{}", level) })
},
Attrs::ListItem => {
html_start_tag("div", hashmap!{ "data-tag".into() => "bullet".into() })
}
Attrs::Rule => {
html_start_tag("div", hashmap!{ "data-tag".into() => "hr".into() })
}
Attrs::Caret { ref client_id, ref focus } => {
html_start_tag("div", hashmap!{
"data-tag".into() => "caret".to_string(),
"data-client".into() => client_id.to_string(),
"data-focus".into() => if *focus { "true".into() } else { "false".into() },
"data-anchor".into() => if !*focus { "true".into() } else { "false".into() },
})
},
});
out.push_str(&doc_as_html(span));
out.push_str(r"</div>");
}
&DocText(ref styles, ref text) => {
let classes = styles.styles();
out.push_str(&format!(
r#"<span class="{}">"#,
classes
.into_iter()
.map(|e| e.to_string())
.collect::<Vec<_>>()
.join(" "),
));
out.push_str(&encode_minimal(text.as_str()));
out.push_str(r"</span>");
}
}
}
out
}