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
use super::{html, markdown_v2, Nesting};
use std::{
fmt::{self, Formatter, Write},
ops::Deref,
};
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash)]
#[must_use = "formatters need to be formatted with `markdown_v2` or `html`"]
pub struct InlineCode<T>(T);
pub const fn inline_code<T>(code: T) -> InlineCode<T>
where
T: Deref<Target = str>,
{
InlineCode(code)
}
impl<T> markdown_v2::Formattable for InlineCode<T>
where
T: Deref<Target = str>,
{
fn format(&self, formatter: &mut Formatter, _: Nesting) -> fmt::Result {
formatter.write_char('`')?;
self.0.chars().try_for_each(|x| {
if markdown_v2::ESCAPED_CODE_CHARACTERS.contains(&x) {
formatter.write_char('\\')?;
}
formatter.write_char(x)
})?;
formatter.write_char('`')
}
}
impl<T> html::Formattable for InlineCode<T>
where
T: Deref<Target = str>,
{
fn format(
&self,
formatter: &mut Formatter,
nesting: Nesting,
) -> fmt::Result {
formatter.write_str("<code>")?;
html::Formattable::format(&&*self.0, formatter, nesting)?;
formatter.write_str("</code>")
}
}