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
use super::finish::render_finish;
use super::prelude::*;
use crate::RemoteHandle;
use std::fmt::{self, Debug};
pub struct HtmlRender<'h> {
handle: &'h dyn RemoteHandle,
}
impl<'h> HtmlRender<'h> {
pub fn new(handle: &'h dyn RemoteHandle) -> Self {
HtmlRender { handle }
}
}
impl<'h> Render for HtmlRender<'h> {
type Output = HtmlOutput;
fn render(&self, tree: &SyntaxTree, info: PageInfo) -> Result<HtmlOutput> {
let mut ctx = HtmlContext::new(info, self.handle);
tree.paragraphs().render(&mut ctx)?;
render_finish(&mut ctx)?;
Ok(ctx.into())
}
}
impl<'h> Debug for HtmlRender<'h> {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "HtmlRender {{ .. }}")
}
}
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct HtmlOutput {
pub html: String,
pub style: String,
pub meta: Vec<HtmlMeta>,
}