aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreu Botella2019-11-17 19:27:54 +0100
committerPhilipp A2019-11-17 19:27:54 +0100
commitbcb2ef27cb6cf46641e9c1c72aa0eb3d8322b312 (patch)
tree22298086344c1f03c31be3fdfba8dc0531d82178
parentda57c94e9c4fc2c773b365df25b39a0d966b77e8 (diff)
downloadrust-rst-bcb2ef27cb6cf46641e9c1c72aa0eb3d8322b312.tar.bz2
Minor fixes to the HTML rendering. (#13)
- Escaping the plain text. - Bringing the rendering of some elements closer to what docutils does.
-rw-r--r--src/renderer/html.rs29
1 files changed, 21 insertions, 8 deletions
diff --git a/src/renderer/html.rs b/src/renderer/html.rs
index 44df6d1..68b471c 100644
--- a/src/renderer/html.rs
+++ b/src/renderer/html.rs
@@ -27,6 +27,13 @@ pub fn render_html<W>(document: &Document, mut stream: W, standalone: bool) -> R
}
}
+fn escape_html(text: &str) -> String {
+ text.replace('&', "&amp;")
+ .replace('<', "&lt;")
+ .replace('>', "&gt;")
+ .replace('"', "&quot;")
+}
+
trait HTMLRender {
fn render_html<W>(&self, stream: &mut W) -> Result<(), Error> where W: Write;
}
@@ -95,7 +102,13 @@ impl HTMLRender for e::Decoration {
impl_html_render_cat!(SubStructure { Topic, Sidebar, Transition, Section, BodyElement });
impl_html_render_simple!(Sidebar => aside, Section => section);
-impl_html_render_simple_nochildren!(Transition => hr);
+
+impl HTMLRender for e::Transition {
+ fn render_html<W>(&self, stream: &mut W) -> Result<(), Error> where W: Write {
+ write!(stream, "<hr/>")?;
+ Ok(())
+ }
+}
impl HTMLRender for e::Topic {
fn render_html<W>(&self, _stream: &mut W) -> Result<(), Error> where W: Write {
@@ -112,17 +125,17 @@ impl<I> HTMLRender for I where I: e::Element + a::ExtraAttributes<a::Image> {
fn render_html<W>(&self, stream: &mut W) -> Result<(), Error> where W: Write {
let extra = self.extra();
if let Some(ref target) = extra.target {
- write!(stream, "<a href=\"{}\">", target)?;
+ write!(stream, "<a href=\"{}\">", escape_html(target.as_str()))?;
}
- write!(stream, "<img src=\"{}\"", extra.uri)?;
+ write!(stream, "<img")?;
if let Some(ref alt) = extra.alt {
- write!(stream, " alt=\"{}\"", alt)?;
+ write!(stream, " alt=\"{}\"", escape_html(alt))?;
}
// TODO: align: Option<AlignHV>
// TODO: height: Option<Measure>
// TODO: width: Option<Measure>
// TODO: scale: Option<u8>
- write!(stream, ">")?;
+ write!(stream, " src=\"{}\" />", escape_html(extra.uri.as_str()))?;
if extra.target.is_some() {
write!(stream, "</a>")?;
}
@@ -206,7 +219,7 @@ impl_html_render_simple!(Emphasis => em, Strong => strong, Literal => code, Foot
impl HTMLRender for String {
fn render_html<W>(&self, stream: &mut W) -> Result<(), Error> where W: Write {
- write!(stream, "{}", self)?;
+ write!(stream, "{}", escape_html(self))?;
Ok(())
}
}
@@ -216,11 +229,11 @@ impl HTMLRender for e::Reference {
let extra = self.extra();
write!(stream, "<a class=\"reference external\"")?;
if let Some(ref target) = extra.refuri {
- write!(stream, " href=\"{}\"", target)?;
+ write!(stream, " href=\"{}\"", escape_html(target.as_str()))?;
}
/*
if let Some(ref name) = extra.name {
- write!(stream, " title=\"{}\"", name.0)?;
+ write!(stream, " title=\"{}\"", escape_html(&name.0))?;
}
*/
write!(stream, ">")?;