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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
use self::Paragraph::*;
use super::prelude::*;
use crate::enums::{Alignment, ListStyle};
impl<'a, 'p> ComponentRender for &'a [Paragraph<'p>] {
fn render(&self, ctx: &mut HtmlContext) -> Result<()> {
for paragraph in *self {
paragraph.render(ctx)?;
}
Ok(())
}
}
impl<'a, 'p> ComponentRender for &'a Vec<Paragraph<'p>> {
#[inline]
fn render(&self, ctx: &mut HtmlContext) -> Result<()> {
self.as_slice().render(ctx)
}
}
impl<'p> ComponentRender for Paragraph<'p> {
fn render(&self, ctx: &mut HtmlContext) -> Result<()> {
match *self {
Align {
alignment,
ref paragraphs,
} => {
ctx.html()
.div()
.attr("style", &["text-align: ", alignment.style()])
.inner(¶graphs)?;
}
Center { ref words } => {
ctx.html()
.div()
.attr("style", &["text-align: center"])
.inner(&words)?;
}
ClearFloat { direction } => {
let style = match direction {
Some(Alignment::Left) => "left",
Some(Alignment::Right) => "right",
Some(direction) => panic!("Invalid case for ClearFloat: {:?}", direction),
None => "both",
};
ctx.html()
.div()
.attr("style", &["clear: ", style, "; height: 0;"])
.inner(&"")?;
}
CodeBlock {
ref language,
ref contents,
} => {
let _ = language;
ctx.html().code().inner(contents)?;
}
Collapsible { .. } => {
return Err(Error::StaticMsg(
"Rendering for collapsibles are not supported yet",
));
}
Div {
ref id,
ref class,
ref style,
ref paragraphs,
} => {
let mut html = ctx.html().div();
if let Some(id) = id {
html.attr("id", &[id]);
}
if let Some(class) = class {
html.attr("class", &[class]);
}
if let Some(style) = style {
html.attr("style", &[style]);
}
html.inner(¶graphs)?;
}
Heading { level, ref words } => {
use std::io::Write;
use std::str;
let mut buffer: [u8; 2] = [0; 2];
write!(&mut buffer[..], "h{}", level).expect("Unable to write to temporary buffer");
let header = str::from_utf8(&buffer[..]).unwrap();
ctx.html().tag(header).inner(&words)?;
}
HorizontalLine => {
ctx.html().hr();
}
Html { contents } => ctx.push_raw_str(contents),
Iframe { url, ref arguments } => {
let mut html = ctx.html().iframe();
html.attr("src", &[url]);
for (key, value) in arguments {
html.attr(key, &[value]);
}
html.inner(&"")?;
}
IfTags {
ref required,
ref prohibited,
ref paragraphs,
} => {
let tags = &ctx.info().tags;
let should_display = move || {
for tag in required {
if !tags.contains(tag) {
return false;
}
}
for tag in prohibited {
if tags.contains(tag) {
return false;
}
}
true
};
if should_display() {
paragraphs.render(ctx)?;
}
}
Javascript { contents } => {
ctx.html().script().inner(&contents)?;
}
List {
style,
depth,
ref items,
} => {
let _ = depth;
let mut html = match style {
ListStyle::Bullet => ctx.html().ul(),
ListStyle::Numbered => ctx.html().ol(),
};
html.contents(|ctx| {
for item in items {
ctx.html().li().inner(item)?;
}
Ok(())
})?;
}
Math { .. } => {
return Err(Error::StaticMsg(
"Rendering for mathematical expressions is not implemented yet",
));
}
Newlines { count } => {
for _ in 0..count {
ctx.html().br();
}
}
Table { ref rows } => {
ctx.html().table().contents(|ctx| {
for row in rows {
ctx.html().tr().contents(|ctx| {
for column in &row.columns {
let tag = if row.title { "th" } else { "td" };
ctx.html().tag(tag).inner(&column)?;
}
Ok(())
})?;
}
Ok(())
})?;
}
TableOfContents {} => {
return Err(Error::StaticMsg(
"Rendering for the table of contents is not implemented yet",
));
}
QuoteBlock {
ref id,
ref class,
ref style,
ref paragraphs,
} => {
let mut html = ctx.html().blockquote();
if let Some(id) = id {
html.attr("id", &[id]);
}
if let Some(class) = class {
html.attr("class", &[class]);
}
if let Some(style) = style {
html.attr("style", &[style]);
}
html.inner(¶graphs)?;
}
Words {
centered,
ref words,
} => {
let mut html = ctx.html().p();
if centered {
html.attr("style", &["text-align: center"]);
}
html.inner(&words)?;
}
}
Ok(())
}
}