zola/components/rendering/src/lib.rs

22 lines
620 B
Rust
Raw Normal View History

2017-07-01 07:47:41 +00:00
mod context;
mod markdown;
2018-05-03 18:50:30 +00:00
mod shortcode;
2018-10-31 07:18:57 +00:00
mod table_of_contents;
2017-07-01 07:47:41 +00:00
2018-05-06 20:58:39 +00:00
use errors::Result;
2018-10-31 07:18:57 +00:00
pub use context::RenderContext;
2018-05-06 20:58:39 +00:00
use markdown::markdown_to_html;
2018-05-03 18:50:30 +00:00
pub use shortcode::render_shortcodes;
pub use table_of_contents::Heading;
2018-05-06 20:58:39 +00:00
pub fn render_content(content: &str, context: &RenderContext) -> Result<markdown::Rendered> {
// Don't do shortcodes if there is nothing like a shortcode in the content
2018-05-06 20:58:39 +00:00
if content.contains("{{") || content.contains("{%") {
2018-02-02 20:35:04 +00:00
let rendered = render_shortcodes(content, context)?;
2018-05-06 20:58:39 +00:00
return markdown_to_html(&rendered, context);
}
markdown_to_html(&content, context)
}