2018-10-31 07:18:57 +00:00
|
|
|
use std::borrow::Cow::{Borrowed, Owned};
|
2017-03-07 12:34:31 +00:00
|
|
|
|
2018-11-07 18:42:15 +00:00
|
|
|
use self::cmark::{Event, Options, Parser, Tag};
|
2017-03-07 12:34:31 +00:00
|
|
|
use pulldown_cmark as cmark;
|
2017-04-06 07:07:18 +00:00
|
|
|
use slug::slugify;
|
2017-03-07 12:34:31 +00:00
|
|
|
use syntect::easy::HighlightLines;
|
2018-10-31 07:18:57 +00:00
|
|
|
use syntect::html::{
|
|
|
|
start_highlighted_html_snippet, styled_line_to_highlighted_html, IncludeBackground,
|
|
|
|
};
|
2017-03-27 14:17:33 +00:00
|
|
|
|
2018-10-31 07:18:57 +00:00
|
|
|
use config::highlighting::{get_highlighter, SYNTAX_SET, THEME_SET};
|
2017-07-01 07:47:41 +00:00
|
|
|
use errors::Result;
|
2018-07-16 19:13:00 +00:00
|
|
|
use link_checker::check_url;
|
2018-10-31 07:18:57 +00:00
|
|
|
use utils::site::resolve_internal_link;
|
2018-05-06 20:58:39 +00:00
|
|
|
|
|
|
|
use context::RenderContext;
|
2018-10-31 07:18:57 +00:00
|
|
|
use table_of_contents::{make_table_of_contents, Header, TempHeader};
|
2018-05-06 20:58:39 +00:00
|
|
|
|
2018-08-22 16:34:32 +00:00
|
|
|
const CONTINUE_READING: &str = "<p><a name=\"continue-reading\"></a></p>\n";
|
|
|
|
|
2018-08-24 21:37:39 +00:00
|
|
|
#[derive(Debug)]
|
2018-08-22 16:34:32 +00:00
|
|
|
pub struct Rendered {
|
|
|
|
pub body: String,
|
|
|
|
pub summary_len: Option<usize>,
|
2018-09-30 19:15:09 +00:00
|
|
|
pub toc: Vec<Header>,
|
2018-08-22 16:34:32 +00:00
|
|
|
}
|
|
|
|
|
2018-05-06 20:58:39 +00:00
|
|
|
// We might have cases where the slug is already present in our list of anchor
|
|
|
|
// for example an article could have several titles named Example
|
|
|
|
// We add a counter after the slug if the slug is already present, which
|
|
|
|
// means we will have example, example-1, example-2 etc
|
|
|
|
fn find_anchor(anchors: &[String], name: String, level: u8) -> String {
|
|
|
|
if level == 0 && !anchors.contains(&name) {
|
2018-11-19 14:04:22 +00:00
|
|
|
return name;
|
2018-05-06 20:58:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let new_anchor = format!("{}-{}", name, level + 1);
|
|
|
|
if !anchors.contains(&new_anchor) {
|
|
|
|
return new_anchor;
|
|
|
|
}
|
|
|
|
|
|
|
|
find_anchor(anchors, name, level + 1)
|
|
|
|
}
|
2017-03-07 12:34:31 +00:00
|
|
|
|
2018-11-16 17:19:38 +00:00
|
|
|
// Colocated asset links refers to the files in the same directory,
|
|
|
|
// there it should be a filename only
|
2018-05-07 19:03:51 +00:00
|
|
|
fn is_colocated_asset_link(link: &str) -> bool {
|
2018-09-30 19:15:09 +00:00
|
|
|
!link.contains('/') // http://, ftp://, ../ etc
|
2018-05-07 19:03:51 +00:00
|
|
|
&& !link.starts_with("mailto:")
|
|
|
|
}
|
|
|
|
|
2019-01-05 14:37:24 +00:00
|
|
|
fn fix_link(link: &str, context: &RenderContext) -> Result<String> {
|
|
|
|
// A few situations here:
|
|
|
|
// - it could be a relative link (starting with `./`)
|
|
|
|
// - it could be a link to a co-located asset
|
|
|
|
// - it could be a normal link
|
|
|
|
let result = if link.starts_with("./") {
|
|
|
|
match resolve_internal_link(&link, context.permalinks) {
|
|
|
|
Ok(url) => url,
|
|
|
|
Err(_) => {
|
|
|
|
return Err(format!("Relative link {} not found.", link).into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if is_colocated_asset_link(&link) {
|
|
|
|
format!("{}{}", context.current_page_permalink, link)
|
|
|
|
} else if context.config.check_external_links
|
|
|
|
&& !link.starts_with('#')
|
|
|
|
&& !link.starts_with("mailto:") {
|
|
|
|
let res = check_url(&link);
|
|
|
|
if res.is_valid() {
|
|
|
|
link.to_string()
|
|
|
|
} else {
|
|
|
|
return Err(
|
|
|
|
format!("Link {} is not valid: {}", link, res.message()).into(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
link.to_string()
|
|
|
|
};
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2019-01-06 11:04:53 +00:00
|
|
|
fn push_start_tag(temp_header: &mut TempHeader, tag: &Tag) -> bool {
|
2019-01-05 15:30:53 +00:00
|
|
|
match tag {
|
|
|
|
Tag::Emphasis => temp_header.add_html("<em>"),
|
|
|
|
Tag::Strong => temp_header.add_html("<strong>"),
|
|
|
|
Tag::Code => temp_header.add_html("<code>"),
|
2019-01-06 11:04:53 +00:00
|
|
|
// Tag::Link is handled in `markdown_to_html`
|
2019-01-05 15:30:53 +00:00
|
|
|
_ => return false,
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-01-06 11:04:53 +00:00
|
|
|
fn push_end_tag(temp_header: &mut TempHeader, tag: &Tag) -> bool {
|
2019-01-05 15:30:53 +00:00
|
|
|
match tag {
|
|
|
|
Tag::Emphasis => temp_header.add_html("</em>"),
|
|
|
|
Tag::Strong => temp_header.add_html("</strong>"),
|
|
|
|
Tag::Code => temp_header.add_html("</code>"),
|
|
|
|
Tag::Link(_, _) => temp_header.add_html("</a>"),
|
|
|
|
_ => return false,
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-01-05 14:37:24 +00:00
|
|
|
/// returns true if event have been processed
|
|
|
|
fn push_to_temp_header(event: &Event, temp_header: &mut TempHeader) -> bool {
|
|
|
|
match event {
|
2019-01-06 11:04:53 +00:00
|
|
|
Event::Start(tag) => push_start_tag(temp_header, tag),
|
|
|
|
Event::End(tag) => push_end_tag(temp_header, tag),
|
2019-01-05 15:30:53 +00:00
|
|
|
_ => false,
|
2019-01-05 14:37:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-22 16:34:32 +00:00
|
|
|
pub fn markdown_to_html(content: &str, context: &RenderContext) -> Result<Rendered> {
|
2018-05-06 20:58:39 +00:00
|
|
|
// the rendered html
|
2018-05-07 19:03:51 +00:00
|
|
|
let mut html = String::with_capacity(content.len());
|
2017-03-27 14:17:33 +00:00
|
|
|
// Set while parsing
|
|
|
|
let mut error = None;
|
2018-05-06 20:58:39 +00:00
|
|
|
|
2018-09-09 20:02:38 +00:00
|
|
|
let mut background = IncludeBackground::Yes;
|
2018-10-09 12:33:43 +00:00
|
|
|
let mut highlighter: Option<(HighlightLines, bool)> = None;
|
2017-04-06 07:07:18 +00:00
|
|
|
// If we get text in header, we need to insert the id and a anchor
|
|
|
|
let mut in_header = false;
|
2017-04-22 02:40:11 +00:00
|
|
|
// pulldown_cmark can send several text events for a title if there are markdown
|
|
|
|
// specific characters like `!` in them. We only want to insert the anchor the first time
|
2017-09-27 14:09:13 +00:00
|
|
|
let mut header_created = false;
|
2017-06-16 04:00:48 +00:00
|
|
|
let mut anchors: Vec<String> = vec![];
|
|
|
|
|
|
|
|
let mut headers = vec![];
|
|
|
|
// Defaults to a 0 level so not a real header
|
|
|
|
// It should be an Option ideally but not worth the hassle to update
|
|
|
|
let mut temp_header = TempHeader::default();
|
|
|
|
|
2017-04-19 13:16:21 +00:00
|
|
|
let mut opts = Options::empty();
|
2018-08-22 16:34:32 +00:00
|
|
|
let mut has_summary = false;
|
2018-11-07 18:42:15 +00:00
|
|
|
opts.insert(Options::ENABLE_TABLES);
|
|
|
|
opts.insert(Options::ENABLE_FOOTNOTES);
|
2017-04-19 13:16:21 +00:00
|
|
|
|
2017-03-27 14:17:33 +00:00
|
|
|
{
|
2017-10-29 19:55:36 +00:00
|
|
|
let parser = Parser::new_ext(content, opts).map(|event| {
|
2019-01-06 11:04:53 +00:00
|
|
|
// if in header, just do the parse ourselves
|
2019-01-05 14:37:24 +00:00
|
|
|
if in_header && push_to_temp_header(&event, &mut temp_header) {
|
|
|
|
return Event::Html(Borrowed(""));
|
|
|
|
}
|
|
|
|
|
2017-10-29 19:55:36 +00:00
|
|
|
match event {
|
2018-05-06 20:58:39 +00:00
|
|
|
Event::Text(text) => {
|
|
|
|
// Header first
|
|
|
|
if in_header {
|
|
|
|
if header_created {
|
2018-10-18 12:58:50 +00:00
|
|
|
temp_header.add_text(&text);
|
2018-08-24 16:40:26 +00:00
|
|
|
return Event::Html(Borrowed(""));
|
2018-05-06 20:58:39 +00:00
|
|
|
}
|
|
|
|
// += as we might have some <code> or other things already there
|
2018-10-18 12:58:50 +00:00
|
|
|
temp_header.add_text(&text);
|
2018-05-06 20:58:39 +00:00
|
|
|
header_created = true;
|
2018-08-24 16:40:26 +00:00
|
|
|
return Event::Html(Borrowed(""));
|
2017-09-27 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2018-05-06 20:58:39 +00:00
|
|
|
// if we are in the middle of a code block
|
2018-10-09 12:33:43 +00:00
|
|
|
if let Some((ref mut highlighter, in_extra)) = highlighter {
|
|
|
|
let highlighted = if in_extra {
|
|
|
|
if let Some(ref extra) = context.config.extra_syntax_set {
|
|
|
|
highlighter.highlight(&text, &extra)
|
|
|
|
} else {
|
|
|
|
unreachable!("Got a highlighter from extra syntaxes but no extra?");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
highlighter.highlight(&text, &SYNTAX_SET)
|
|
|
|
};
|
|
|
|
//let highlighted = &highlighter.highlight(&text, ss);
|
|
|
|
let html = styled_line_to_highlighted_html(&highlighted, background);
|
2018-05-06 20:58:39 +00:00
|
|
|
return Event::Html(Owned(html));
|
2017-10-23 12:18:05 +00:00
|
|
|
}
|
|
|
|
|
2018-05-06 20:58:39 +00:00
|
|
|
// Business as usual
|
|
|
|
Event::Text(text)
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
Event::Start(Tag::CodeBlock(ref info)) => {
|
|
|
|
if !context.config.highlight_code {
|
2018-08-24 16:40:26 +00:00
|
|
|
return Event::Html(Borrowed("<pre><code>"));
|
2017-03-27 14:17:33 +00:00
|
|
|
}
|
2018-05-07 16:38:04 +00:00
|
|
|
|
2018-05-06 20:58:39 +00:00
|
|
|
let theme = &THEME_SET.themes[&context.config.highlight_theme];
|
2018-10-09 12:33:43 +00:00
|
|
|
highlighter = Some(get_highlighter(info, &context.config));
|
|
|
|
// This selects the background color the same way that start_coloured_html_snippet does
|
2018-10-31 07:18:57 +00:00
|
|
|
let color =
|
|
|
|
theme.settings.background.unwrap_or(::syntect::highlighting::Color::WHITE);
|
2018-10-09 12:33:43 +00:00
|
|
|
background = IncludeBackground::IfDifferent(color);
|
|
|
|
let snippet = start_highlighted_html_snippet(theme);
|
|
|
|
Event::Html(Owned(snippet.0))
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
Event::End(Tag::CodeBlock(_)) => {
|
|
|
|
if !context.config.highlight_code {
|
2018-08-24 16:40:26 +00:00
|
|
|
return Event::Html(Borrowed("</code></pre>\n"));
|
2017-03-27 14:17:33 +00:00
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
// reset highlight and close the code block
|
|
|
|
highlighter = None;
|
2018-08-24 16:40:26 +00:00
|
|
|
Event::Html(Borrowed("</pre>"))
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-07 19:23:27 +00:00
|
|
|
Event::Start(Tag::Image(src, title)) => {
|
|
|
|
if is_colocated_asset_link(&src) {
|
2018-10-31 07:18:57 +00:00
|
|
|
return Event::Start(Tag::Image(
|
|
|
|
Owned(format!("{}{}", context.current_page_permalink, src)),
|
|
|
|
title,
|
|
|
|
));
|
2018-05-07 19:23:27 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 12:51:44 +00:00
|
|
|
Event::Start(Tag::Image(src, title))
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-07 19:03:51 +00:00
|
|
|
Event::Start(Tag::Link(link, title)) => {
|
2019-01-05 14:37:24 +00:00
|
|
|
let fixed_link = match fix_link(&link, context) {
|
|
|
|
Ok(fixed_link) => fixed_link,
|
|
|
|
Err(err) => {
|
|
|
|
error = Some(err);
|
|
|
|
return Event::Html(Borrowed(""))
|
2018-07-16 19:13:00 +00:00
|
|
|
}
|
2018-05-07 19:03:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if in_header {
|
|
|
|
let html = if title.is_empty() {
|
|
|
|
format!("<a href=\"{}\">", fixed_link)
|
|
|
|
} else {
|
|
|
|
format!("<a href=\"{}\" title=\"{}\">", fixed_link, title)
|
2018-05-06 20:58:39 +00:00
|
|
|
};
|
2018-10-18 12:58:50 +00:00
|
|
|
temp_header.add_html(&html);
|
2018-08-24 16:40:26 +00:00
|
|
|
return Event::Html(Borrowed(""));
|
2017-03-27 14:17:33 +00:00
|
|
|
}
|
2017-03-30 05:48:07 +00:00
|
|
|
|
2018-05-07 19:03:51 +00:00
|
|
|
Event::Start(Tag::Link(Owned(fixed_link), title))
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
Event::Start(Tag::Header(num)) => {
|
|
|
|
in_header = true;
|
|
|
|
temp_header = TempHeader::new(num);
|
2018-08-24 16:40:26 +00:00
|
|
|
Event::Html(Borrowed(""))
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
Event::End(Tag::Header(_)) => {
|
2018-10-18 12:58:50 +00:00
|
|
|
// End of a header, reset all the things and return the header string
|
|
|
|
|
|
|
|
let id = find_anchor(&anchors, slugify(&temp_header.title), 0);
|
|
|
|
anchors.push(id.clone());
|
|
|
|
temp_header.permalink = format!("{}#{}", context.current_page_permalink, id);
|
|
|
|
temp_header.id = id;
|
|
|
|
|
2018-05-06 20:58:39 +00:00
|
|
|
in_header = false;
|
|
|
|
header_created = false;
|
|
|
|
let val = temp_header.to_string(context.tera, context.insert_anchor);
|
|
|
|
headers.push(temp_header.clone());
|
|
|
|
temp_header = TempHeader::default();
|
|
|
|
Event::Html(Owned(val))
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-08-22 16:34:32 +00:00
|
|
|
Event::Html(ref markup) if markup.contains("<!-- more -->") => {
|
|
|
|
has_summary = true;
|
|
|
|
Event::Html(Borrowed(CONTINUE_READING))
|
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
_ => event,
|
2017-05-01 07:04:41 +00:00
|
|
|
}
|
2018-05-06 20:58:39 +00:00
|
|
|
});
|
2017-03-07 12:34:31 +00:00
|
|
|
|
2017-03-27 14:17:33 +00:00
|
|
|
cmark::html::push_html(&mut html, parser);
|
2017-03-07 12:34:31 +00:00
|
|
|
}
|
2017-03-23 05:11:24 +00:00
|
|
|
|
2018-08-22 16:34:32 +00:00
|
|
|
if let Some(e) = error {
|
2018-09-30 19:15:09 +00:00
|
|
|
return Err(e);
|
2018-08-22 16:34:32 +00:00
|
|
|
} else {
|
|
|
|
Ok(Rendered {
|
|
|
|
summary_len: if has_summary { html.find(CONTINUE_READING) } else { None },
|
|
|
|
body: html,
|
2018-09-30 19:15:09 +00:00
|
|
|
toc: make_table_of_contents(&headers),
|
2018-08-22 16:34:32 +00:00
|
|
|
})
|
2017-03-27 14:17:33 +00:00
|
|
|
}
|
2017-03-07 12:34:31 +00:00
|
|
|
}
|