html: escape user provided attribute values
This commit is contained in:
parent
f9655dfa9b
commit
8dd4db11ec
1 changed files with 38 additions and 35 deletions
73
src/html.rs
73
src/html.rs
|
@ -167,7 +167,9 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<'s, I, W> {
|
||||||
if dst.is_empty() {
|
if dst.is_empty() {
|
||||||
self.out.write_str("<a")?;
|
self.out.write_str("<a")?;
|
||||||
} else {
|
} else {
|
||||||
write!(self.out, r#"<a href="{}""#, dst)?;
|
self.out.write_str(r#"<a href=""#)?;
|
||||||
|
self.write_escape(dst)?;
|
||||||
|
self.out.write_char('"')?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Container::Image(..) => {
|
Container::Image(..) => {
|
||||||
|
@ -193,7 +195,9 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<'s, I, W> {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (a, v) in attrs.iter().filter(|(a, _)| *a != "class") {
|
for (a, v) in attrs.iter().filter(|(a, _)| *a != "class") {
|
||||||
write!(self.out, r#" {}="{}""#, a, v)?;
|
write!(self.out, r#" {}=""#, a)?;
|
||||||
|
self.write_escape(v)?;
|
||||||
|
self.out.write_char('"')?;
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Container::Heading {
|
if let Container::Heading {
|
||||||
|
@ -204,7 +208,9 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<'s, I, W> {
|
||||||
| Container::Section { id } = &c
|
| Container::Section { id } = &c
|
||||||
{
|
{
|
||||||
if !attrs.iter().any(|(a, _)| a == "id") {
|
if !attrs.iter().any(|(a, _)| a == "id") {
|
||||||
write!(self.out, r#" id="{}""#, id)?;
|
self.out.write_str(r#" id=""#)?;
|
||||||
|
self.write_escape(id)?;
|
||||||
|
self.out.write_char('"')?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -271,7 +277,9 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<'s, I, W> {
|
||||||
}
|
}
|
||||||
Container::CodeBlock { lang } => {
|
Container::CodeBlock { lang } => {
|
||||||
if let Some(l) = lang {
|
if let Some(l) = lang {
|
||||||
write!(self.out, r#"><code class="language-{}">"#, l)?;
|
self.out.write_str(r#"><code class="language-"#)?;
|
||||||
|
self.write_escape(l)?;
|
||||||
|
self.out.write_str(r#"">"#)?;
|
||||||
} else {
|
} else {
|
||||||
self.out.write_str("><code>")?;
|
self.out.write_str("><code>")?;
|
||||||
}
|
}
|
||||||
|
@ -381,37 +389,11 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<'s, I, W> {
|
||||||
Container::Mark => self.out.write_str("</mark>")?,
|
Container::Mark => self.out.write_str("</mark>")?,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Event::Str(s) => {
|
Event::Str(s) => match self.raw {
|
||||||
let mut s: &str = s.as_ref();
|
Raw::None => self.write_escape(&s)?,
|
||||||
match self.raw {
|
Raw::Html => self.out.write_str(&s)?,
|
||||||
Raw::None => {
|
Raw::Other => {}
|
||||||
let mut ent = "";
|
},
|
||||||
while let Some(i) = s.chars().position(|c| {
|
|
||||||
if let Some(s) = match c {
|
|
||||||
'<' => Some("<"),
|
|
||||||
'>' => Some(">"),
|
|
||||||
'&' => Some("&"),
|
|
||||||
_ => None,
|
|
||||||
} {
|
|
||||||
ent = s;
|
|
||||||
true
|
|
||||||
} else {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}) {
|
|
||||||
self.out.write_str(&s[..i])?;
|
|
||||||
self.out.write_str(ent)?;
|
|
||||||
s = &s[i + 1..];
|
|
||||||
}
|
|
||||||
self.out.write_str(s)?;
|
|
||||||
}
|
|
||||||
Raw::Html => {
|
|
||||||
self.out.write_str(s)?;
|
|
||||||
}
|
|
||||||
Raw::Other => {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Event::Atom(a) => match a {
|
Event::Atom(a) => match a {
|
||||||
Atom::FootnoteReference(_tag, number) => {
|
Atom::FootnoteReference(_tag, number) => {
|
||||||
write!(
|
write!(
|
||||||
|
@ -441,4 +423,25 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<'s, I, W> {
|
||||||
self.out.write_char('\n')?;
|
self.out.write_char('\n')?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn write_escape(&mut self, mut s: &str) -> std::fmt::Result {
|
||||||
|
let mut ent = "";
|
||||||
|
while let Some(i) = s.find(|c| {
|
||||||
|
match c {
|
||||||
|
'<' => Some("<"),
|
||||||
|
'>' => Some(">"),
|
||||||
|
'&' => Some("&"),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
.map_or(false, |s| {
|
||||||
|
ent = s;
|
||||||
|
true
|
||||||
|
})
|
||||||
|
}) {
|
||||||
|
self.out.write_str(&s[..i])?;
|
||||||
|
self.out.write_str(ent)?;
|
||||||
|
s = &s[i + 1..];
|
||||||
|
}
|
||||||
|
self.out.write_str(s)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue