2018-05-03 18:50:30 +00:00
|
|
|
use pest::iterators::Pair;
|
2018-10-31 07:18:57 +00:00
|
|
|
use pest::Parser;
|
2018-11-16 17:19:38 +00:00
|
|
|
use regex::Regex;
|
2018-11-29 19:24:45 +00:00
|
|
|
use tera::{to_value, Context, Map, Value};
|
2018-05-03 18:50:30 +00:00
|
|
|
|
2018-10-31 07:18:57 +00:00
|
|
|
use context::RenderContext;
|
2018-05-03 18:50:30 +00:00
|
|
|
use errors::{Result, ResultExt};
|
|
|
|
|
|
|
|
// This include forces recompiling this source file if the grammar file changes.
|
|
|
|
// Uncomment it when doing changes to the .pest file
|
2018-07-31 13:17:31 +00:00
|
|
|
const _GRAMMAR: &str = include_str!("content.pest");
|
2018-05-03 18:50:30 +00:00
|
|
|
|
|
|
|
#[derive(Parser)]
|
|
|
|
#[grammar = "content.pest"]
|
|
|
|
pub struct ContentParser;
|
|
|
|
|
2018-11-16 17:19:38 +00:00
|
|
|
lazy_static! {
|
|
|
|
static ref MULTIPLE_NEWLINE_RE: Regex = Regex::new(r"\n\s*\n").unwrap();
|
|
|
|
}
|
|
|
|
|
2018-05-03 18:50:30 +00:00
|
|
|
fn replace_string_markers(input: &str) -> String {
|
|
|
|
match input.chars().next().unwrap() {
|
2018-11-19 14:04:22 +00:00
|
|
|
'"' => input.replace('"', ""),
|
|
|
|
'\'' => input.replace('\'', ""),
|
|
|
|
'`' => input.replace('`', ""),
|
2018-05-03 18:50:30 +00:00
|
|
|
_ => unreachable!("How did you even get there"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_literal(pair: Pair<Rule>) -> Value {
|
|
|
|
let mut val = None;
|
|
|
|
for p in pair.into_inner() {
|
|
|
|
match p.as_rule() {
|
|
|
|
Rule::boolean => match p.as_str() {
|
|
|
|
"true" => val = Some(Value::Bool(true)),
|
|
|
|
"false" => val = Some(Value::Bool(false)),
|
|
|
|
_ => unreachable!(),
|
|
|
|
},
|
|
|
|
Rule::string => val = Some(Value::String(replace_string_markers(p.as_str()))),
|
|
|
|
Rule::float => {
|
|
|
|
val = Some(to_value(p.as_str().parse::<f64>().unwrap()).unwrap());
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::int => {
|
|
|
|
val = Some(to_value(p.as_str().parse::<i64>().unwrap()).unwrap());
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-10-31 07:18:57 +00:00
|
|
|
_ => unreachable!("Unknown literal: {:?}", p),
|
2018-05-03 18:50:30 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
val.unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns (shortcode_name, kwargs)
|
|
|
|
fn parse_shortcode_call(pair: Pair<Rule>) -> (String, Map<String, Value>) {
|
|
|
|
let mut name = None;
|
|
|
|
let mut args = Map::new();
|
|
|
|
|
|
|
|
for p in pair.into_inner() {
|
|
|
|
match p.as_rule() {
|
2018-10-31 07:18:57 +00:00
|
|
|
Rule::ident => {
|
|
|
|
name = Some(p.into_span().as_str().to_string());
|
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::kwarg => {
|
|
|
|
let mut arg_name = None;
|
|
|
|
let mut arg_val = None;
|
|
|
|
for p2 in p.into_inner() {
|
|
|
|
match p2.as_rule() {
|
2018-10-31 07:18:57 +00:00
|
|
|
Rule::ident => {
|
|
|
|
arg_name = Some(p2.into_span().as_str().to_string());
|
|
|
|
}
|
|
|
|
Rule::literal => {
|
|
|
|
arg_val = Some(parse_literal(p2));
|
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::array => {
|
|
|
|
let mut vals = vec![];
|
|
|
|
for p3 in p2.into_inner() {
|
|
|
|
match p3.as_rule() {
|
|
|
|
Rule::literal => vals.push(parse_literal(p3)),
|
2018-10-31 07:18:57 +00:00
|
|
|
_ => unreachable!(
|
|
|
|
"Got something other than literal in an array: {:?}",
|
|
|
|
p3
|
|
|
|
),
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
arg_val = Some(Value::Array(vals));
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
_ => unreachable!("Got something unexpected in a kwarg: {:?}", p2),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
args.insert(arg_name.unwrap(), arg_val.unwrap());
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-10-31 07:18:57 +00:00
|
|
|
_ => unreachable!("Got something unexpected in a shortcode: {:?}", p),
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
(name.unwrap(), args)
|
|
|
|
}
|
|
|
|
|
2018-10-31 07:18:57 +00:00
|
|
|
fn render_shortcode(
|
|
|
|
name: &str,
|
|
|
|
args: &Map<String, Value>,
|
|
|
|
context: &RenderContext,
|
|
|
|
body: Option<&str>,
|
|
|
|
) -> Result<String> {
|
2018-06-25 17:13:21 +00:00
|
|
|
let mut tera_context = Context::new();
|
2018-05-03 18:50:30 +00:00
|
|
|
for (key, value) in args.iter() {
|
2018-06-25 17:13:21 +00:00
|
|
|
tera_context.insert(key, value);
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
if let Some(ref b) = body {
|
2018-05-06 20:58:39 +00:00
|
|
|
// Trimming right to avoid most shortcodes with bodies ending up with a HTML new line
|
2018-06-25 17:13:21 +00:00
|
|
|
tera_context.insert("body", b.trim_right());
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
2018-06-25 17:13:21 +00:00
|
|
|
tera_context.extend(context.tera_context.clone());
|
2018-05-03 18:50:30 +00:00
|
|
|
let tpl_name = format!("shortcodes/{}.html", name);
|
|
|
|
|
2018-10-31 07:18:57 +00:00
|
|
|
let res = context
|
|
|
|
.tera
|
2018-06-25 17:13:21 +00:00
|
|
|
.render(&tpl_name, &tera_context)
|
2018-05-19 10:12:02 +00:00
|
|
|
.chain_err(|| format!("Failed to render {} shortcode", name))?;
|
|
|
|
|
2018-11-16 17:19:38 +00:00
|
|
|
// Small hack to avoid having multiple blank lines because of Tera tags for example
|
|
|
|
// A blank like will cause the markdown parser to think we're out of HTML and start looking
|
|
|
|
// at indentation, making the output a code block.
|
|
|
|
let res = MULTIPLE_NEWLINE_RE.replace_all(&res, "\n");
|
|
|
|
|
|
|
|
Ok(res.to_string())
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 20:35:04 +00:00
|
|
|
pub fn render_shortcodes(content: &str, context: &RenderContext) -> Result<String> {
|
2018-05-03 18:50:30 +00:00
|
|
|
let mut res = String::with_capacity(content.len());
|
|
|
|
|
|
|
|
let mut pairs = match ContentParser::parse(Rule::page, content) {
|
|
|
|
Ok(p) => p,
|
2018-05-06 20:58:39 +00:00
|
|
|
Err(e) => {
|
2018-10-31 07:18:57 +00:00
|
|
|
let fancy_e = e.renamed_rules(|rule| match *rule {
|
|
|
|
Rule::int => "an integer".to_string(),
|
|
|
|
Rule::float => "a float".to_string(),
|
|
|
|
Rule::string => "a string".to_string(),
|
|
|
|
Rule::literal => "a literal (int, float, string, bool)".to_string(),
|
|
|
|
Rule::array => "an array".to_string(),
|
|
|
|
Rule::kwarg => "a keyword argument".to_string(),
|
|
|
|
Rule::ident => "an identifier".to_string(),
|
|
|
|
Rule::inline_shortcode => "an inline shortcode".to_string(),
|
|
|
|
Rule::ignored_inline_shortcode => "an ignored inline shortcode".to_string(),
|
|
|
|
Rule::sc_body_start => "the start of a shortcode".to_string(),
|
|
|
|
Rule::ignored_sc_body_start => "the start of an ignored shortcode".to_string(),
|
|
|
|
Rule::text => "some text".to_string(),
|
|
|
|
Rule::EOI => "end of input".to_string(),
|
|
|
|
Rule::double_quoted_string => "double quoted string".to_string(),
|
|
|
|
Rule::single_quoted_string => "single quoted string".to_string(),
|
|
|
|
Rule::backquoted_quoted_string => "backquoted quoted string".to_string(),
|
|
|
|
Rule::boolean => "a boolean (true, false)".to_string(),
|
|
|
|
Rule::all_chars => "a alphanumerical character".to_string(),
|
|
|
|
Rule::kwargs => "a list of keyword arguments".to_string(),
|
|
|
|
Rule::sc_def => "a shortcode definition".to_string(),
|
|
|
|
Rule::shortcode_with_body => "a shortcode with body".to_string(),
|
|
|
|
Rule::ignored_shortcode_with_body => "an ignored shortcode with body".to_string(),
|
|
|
|
Rule::sc_body_end => "{% end %}".to_string(),
|
|
|
|
Rule::ignored_sc_body_end => "{%/* end */%}".to_string(),
|
|
|
|
Rule::text_in_body_sc => "text in a shortcode body".to_string(),
|
|
|
|
Rule::text_in_ignored_body_sc => "text in an ignored shortcode body".to_string(),
|
|
|
|
Rule::content => "some content".to_string(),
|
|
|
|
Rule::page => "a page".to_string(),
|
|
|
|
Rule::WHITESPACE => "whitespace".to_string(),
|
2018-05-06 20:58:39 +00:00
|
|
|
});
|
|
|
|
bail!("{}", fancy_e);
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// We have at least a `page` pair
|
|
|
|
for p in pairs.next().unwrap().into_inner() {
|
|
|
|
match p.as_rule() {
|
2018-10-18 23:44:59 +00:00
|
|
|
Rule::text => res.push_str(p.into_span().as_str()),
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::inline_shortcode => {
|
|
|
|
let (name, args) = parse_shortcode_call(p);
|
2018-09-30 19:15:09 +00:00
|
|
|
res.push_str(&render_shortcode(&name, &args, context, None)?);
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::shortcode_with_body => {
|
|
|
|
let mut inner = p.into_inner();
|
|
|
|
// 3 items in inner: call, body, end
|
|
|
|
// we don't care about the closing tag
|
|
|
|
let (name, args) = parse_shortcode_call(inner.next().unwrap());
|
|
|
|
let body = inner.next().unwrap().into_span().as_str();
|
2018-09-30 19:15:09 +00:00
|
|
|
res.push_str(&render_shortcode(&name, &args, context, Some(body))?);
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::ignored_inline_shortcode => {
|
2018-07-31 13:17:31 +00:00
|
|
|
res.push_str(
|
2018-10-31 07:18:57 +00:00
|
|
|
&p.into_span().as_str().replacen("{{/*", "{{", 1).replacen("*/}}", "}}", 1),
|
2018-07-31 13:17:31 +00:00
|
|
|
);
|
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::ignored_shortcode_with_body => {
|
|
|
|
for p2 in p.into_inner() {
|
|
|
|
match p2.as_rule() {
|
|
|
|
Rule::ignored_sc_body_start | Rule::ignored_sc_body_end => {
|
2018-05-17 17:04:42 +00:00
|
|
|
res.push_str(
|
2018-10-31 07:18:57 +00:00
|
|
|
&p2.into_span()
|
|
|
|
.as_str()
|
2018-05-17 17:04:42 +00:00
|
|
|
.replacen("{%/*", "{%", 1)
|
2018-10-31 07:18:57 +00:00
|
|
|
.replacen("*/%}", "%}", 1),
|
2018-05-17 17:04:42 +00:00
|
|
|
);
|
2018-07-31 13:17:31 +00:00
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
Rule::text_in_ignored_body_sc => res.push_str(p2.into_span().as_str()),
|
2018-05-17 17:04:42 +00:00
|
|
|
_ => unreachable!("Got something weird in an ignored shortcode: {:?}", p2),
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2018-10-09 13:24:56 +00:00
|
|
|
Rule::EOI => (),
|
2018-05-03 18:50:30 +00:00
|
|
|
_ => unreachable!("unexpected page rule: {:?}", p.as_rule()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2018-02-02 20:35:04 +00:00
|
|
|
use std::collections::HashMap;
|
2018-08-15 13:42:43 +00:00
|
|
|
|
2018-10-31 07:18:57 +00:00
|
|
|
use super::*;
|
2018-02-02 20:35:04 +00:00
|
|
|
use config::Config;
|
|
|
|
use front_matter::InsertAnchor;
|
2018-10-31 07:18:57 +00:00
|
|
|
use tera::Tera;
|
2018-05-03 18:50:30 +00:00
|
|
|
|
|
|
|
macro_rules! assert_lex_rule {
|
|
|
|
($rule: expr, $input: expr) => {
|
|
|
|
let res = ContentParser::parse($rule, $input);
|
|
|
|
println!("{:?}", $input);
|
|
|
|
println!("{:#?}", res);
|
|
|
|
if res.is_err() {
|
|
|
|
println!("{}", res.unwrap_err());
|
|
|
|
panic!();
|
|
|
|
}
|
|
|
|
assert!(res.is_ok());
|
|
|
|
assert_eq!(res.unwrap().last().unwrap().into_span().end(), $input.len());
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-02-02 20:35:04 +00:00
|
|
|
fn render_shortcodes(code: &str, tera: &Tera) -> String {
|
|
|
|
let config = Config::default();
|
|
|
|
let permalinks = HashMap::new();
|
2018-10-09 12:33:43 +00:00
|
|
|
let context = RenderContext::new(&tera, &config, "", &permalinks, InsertAnchor::None);
|
2018-02-02 20:35:04 +00:00
|
|
|
super::render_shortcodes(code, &context).unwrap()
|
|
|
|
}
|
|
|
|
|
2018-05-03 18:50:30 +00:00
|
|
|
#[test]
|
|
|
|
fn lex_text() {
|
|
|
|
let inputs = vec!["Hello world", "HEllo \n world", "Hello 1 2 true false 'hey'"];
|
|
|
|
for i in inputs {
|
|
|
|
assert_lex_rule!(Rule::text, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn lex_inline_shortcode() {
|
|
|
|
let inputs = vec![
|
|
|
|
"{{ youtube() }}",
|
|
|
|
"{{ youtube(id=1, autoplay=true, url='hey') }}",
|
|
|
|
"{{ youtube(id=1, \nautoplay=true, url='hey') }}",
|
|
|
|
];
|
|
|
|
for i in inputs {
|
|
|
|
assert_lex_rule!(Rule::inline_shortcode, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn lex_inline_ignored_shortcode() {
|
|
|
|
let inputs = vec![
|
|
|
|
"{{/* youtube() */}}",
|
|
|
|
"{{/* youtube(id=1, autoplay=true, url='hey') */}}",
|
|
|
|
"{{/* youtube(id=1, \nautoplay=true, \nurl='hey') */}}",
|
|
|
|
];
|
|
|
|
for i in inputs {
|
|
|
|
assert_lex_rule!(Rule::ignored_inline_shortcode, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn lex_shortcode_with_body() {
|
|
|
|
let inputs = vec![
|
|
|
|
r#"{% youtube() %}
|
|
|
|
Some text
|
|
|
|
{% end %}"#,
|
|
|
|
r#"{% youtube(id=1,
|
|
|
|
autoplay=true, url='hey') %}
|
|
|
|
Some text
|
|
|
|
{% end %}"#,
|
|
|
|
];
|
|
|
|
for i in inputs {
|
|
|
|
assert_lex_rule!(Rule::shortcode_with_body, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn lex_ignored_shortcode_with_body() {
|
|
|
|
let inputs = vec![
|
|
|
|
r#"{%/* youtube() */%}
|
|
|
|
Some text
|
|
|
|
{%/* end */%}"#,
|
|
|
|
r#"{%/* youtube(id=1,
|
|
|
|
autoplay=true, url='hey') */%}
|
|
|
|
Some text
|
|
|
|
{%/* end */%}"#,
|
|
|
|
];
|
|
|
|
for i in inputs {
|
|
|
|
assert_lex_rule!(Rule::ignored_shortcode_with_body, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn lex_page() {
|
|
|
|
let inputs = vec![
|
|
|
|
"Some text and a shortcode `{{/* youtube() */}}`",
|
|
|
|
"{{ youtube(id=1, autoplay=true, url='hey') }}",
|
|
|
|
"{{ youtube(id=1, \nautoplay=true, url='hey') }} that's it",
|
|
|
|
r#"
|
|
|
|
This is a test
|
|
|
|
{% hello() %}
|
|
|
|
Body {{ var }}
|
|
|
|
{% end %}
|
2018-10-31 07:18:57 +00:00
|
|
|
"#,
|
2018-05-03 18:50:30 +00:00
|
|
|
];
|
|
|
|
for i in inputs {
|
|
|
|
assert_lex_rule!(Rule::page, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn does_nothing_with_no_shortcodes() {
|
2018-02-02 20:35:04 +00:00
|
|
|
let res = render_shortcodes("Hello World", &Tera::default());
|
|
|
|
assert_eq!(res, "Hello World");
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_unignore_inline_shortcode() {
|
2018-02-02 20:35:04 +00:00
|
|
|
let res = render_shortcodes("Hello World {{/* youtube() */}}", &Tera::default());
|
|
|
|
assert_eq!(res, "Hello World {{ youtube() }}");
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_unignore_shortcode_with_body() {
|
2018-10-31 07:18:57 +00:00
|
|
|
let res = render_shortcodes(
|
|
|
|
r#"
|
2018-05-03 18:50:30 +00:00
|
|
|
Hello World
|
2018-10-31 07:18:57 +00:00
|
|
|
{%/* youtube() */%}Some body {{ hello() }}{%/* end */%}"#,
|
|
|
|
&Tera::default(),
|
|
|
|
);
|
2018-02-02 20:35:04 +00:00
|
|
|
assert_eq!(res, "\nHello World\n{% youtube() %}Some body {{ hello() }}{% end %}");
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 14:44:52 +00:00
|
|
|
// https://github.com/Keats/gutenberg/issues/383
|
|
|
|
#[test]
|
|
|
|
fn unignore_shortcode_with_body_does_not_swallow_initial_whitespace() {
|
2018-10-31 07:18:57 +00:00
|
|
|
let res = render_shortcodes(
|
|
|
|
r#"
|
2018-09-12 14:44:52 +00:00
|
|
|
Hello World
|
|
|
|
{%/* youtube() */%}
|
2018-10-31 07:18:57 +00:00
|
|
|
Some body {{ hello() }}{%/* end */%}"#,
|
|
|
|
&Tera::default(),
|
|
|
|
);
|
2018-09-12 14:44:52 +00:00
|
|
|
assert_eq!(res, "\nHello World\n{% youtube() %}\nSome body {{ hello() }}{% end %}");
|
|
|
|
}
|
|
|
|
|
2018-05-03 18:50:30 +00:00
|
|
|
#[test]
|
|
|
|
fn can_parse_shortcode_arguments() {
|
|
|
|
let inputs = vec![
|
|
|
|
("{{ youtube() }}", "youtube", Map::new()),
|
2018-10-31 07:18:57 +00:00
|
|
|
("{{ youtube(id=1, autoplay=true, hello='salut', float=1.2) }}", "youtube", {
|
|
|
|
let mut m = Map::new();
|
|
|
|
m.insert("id".to_string(), to_value(1).unwrap());
|
|
|
|
m.insert("autoplay".to_string(), to_value(true).unwrap());
|
|
|
|
m.insert("hello".to_string(), to_value("salut").unwrap());
|
|
|
|
m.insert("float".to_string(), to_value(1.2).unwrap());
|
|
|
|
m
|
|
|
|
}),
|
|
|
|
("{{ gallery(photos=['something', 'else'], fullscreen=true) }}", "gallery", {
|
|
|
|
let mut m = Map::new();
|
|
|
|
m.insert("photos".to_string(), to_value(["something", "else"]).unwrap());
|
|
|
|
m.insert("fullscreen".to_string(), to_value(true).unwrap());
|
|
|
|
m
|
|
|
|
}),
|
2018-05-03 18:50:30 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
for (i, n, a) in inputs {
|
|
|
|
let mut res = ContentParser::parse(Rule::inline_shortcode, i).unwrap();
|
|
|
|
let (name, args) = parse_shortcode_call(res.next().unwrap());
|
|
|
|
assert_eq!(name, n);
|
|
|
|
assert_eq!(args, a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_render_inline_shortcodes() {
|
|
|
|
let mut tera = Tera::default();
|
|
|
|
tera.add_raw_template("shortcodes/youtube.html", "Hello {{id}}").unwrap();
|
2018-02-02 20:35:04 +00:00
|
|
|
let res = render_shortcodes("Inline {{ youtube(id=1) }}.", &tera);
|
2018-05-03 18:50:30 +00:00
|
|
|
assert_eq!(res, "Inline Hello 1.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_render_shortcodes_with_body() {
|
|
|
|
let mut tera = Tera::default();
|
|
|
|
tera.add_raw_template("shortcodes/youtube.html", "{{body}}").unwrap();
|
2018-02-02 20:35:04 +00:00
|
|
|
let res = render_shortcodes("Body\n {% youtube() %}Hey!{% end %}", &tera);
|
2018-05-03 18:50:30 +00:00
|
|
|
assert_eq!(res, "Body\n Hey!");
|
|
|
|
}
|
2018-10-10 13:26:31 +00:00
|
|
|
|
|
|
|
// https://github.com/Keats/gutenberg/issues/462
|
|
|
|
#[test]
|
|
|
|
fn shortcodes_with_body_do_not_eat_newlines() {
|
|
|
|
let mut tera = Tera::default();
|
|
|
|
tera.add_raw_template("shortcodes/youtube.html", "{{body | safe}}").unwrap();
|
|
|
|
let res = render_shortcodes("Body\n {% youtube() %}\nHello \n World{% end %}", &tera);
|
|
|
|
assert_eq!(res, "Body\n Hello \n World");
|
|
|
|
}
|
2018-05-03 18:50:30 +00:00
|
|
|
}
|