No replacein markdown rendering

Fix #430
This commit is contained in:
Vincent Prouillet 2018-09-15 14:24:14 +02:00
parent 62b89d0c72
commit 10c7aa0a6a

View file

@ -239,7 +239,6 @@ pub fn markdown_to_html(content: &str, context: &RenderContext) -> Result<Render
if let Some(e) = error {
return Err(e)
} else {
html = html.replace("<p></p>", "").replace("</p></p>", "</p>");
Ok(Rendered {
summary_len: if has_summary { html.find(CONTINUE_READING) } else { None },
body: html,