extern crate micromark;
use micromark::{micromark, micromark_with_options, Constructs, Options};
#[test]
fn image() {
assert_eq!(
micromark("[link](/uri \"title\")"),
"
link
",
"should support links"
);
assert_eq!(
micromark("![foo](/url \"title\")"),
"![\"title\" \"foo\"](\"/url\")
",
"should support image w/ resource"
);
assert_eq!(
micromark("[foo *bar*]: train.jpg \"train & tracks\"\n\n![foo *bar*]"),
"![\"train \"foo](\"train.jpg\")
",
"should support image as shortcut reference"
);
assert_eq!(
micromark("![foo ![bar](/url)](/url2)"),
"![\"foo](\"/url2\")
",
"should “support” images in images"
);
assert_eq!(
micromark("![foo [bar](/url)](/url2)"),
"![\"foo](\"/url2\")
",
"should “support” links in images"
);
assert_eq!(
micromark("[foo *bar*]: train.jpg \"train & tracks\"\n\n![foo *bar*][]"),
"![\"train \"foo](\"train.jpg\")
",
"should support “content” in images"
);
assert_eq!(
micromark("[FOOBAR]: train.jpg \"train & tracks\"\n\n![foo *bar*][foobar]"),
"![\"train \"foo](\"train.jpg\")
",
"should support “content” in images"
);
assert_eq!(
micromark("![foo](train.jpg)"),
"![\"foo\"](\"train.jpg\")
",
"should support images w/o title"
);
assert_eq!(
micromark("My ![foo bar](/path/to/train.jpg \"title\" )"),
"My ![\"title\" \"foo](\"/path/to/train.jpg\")
",
"should support images w/ lots of whitespace"
);
assert_eq!(
micromark("![foo]()"),
"![\"foo\"](\"url\")
",
"should support images w/ enclosed destinations"
);
assert_eq!(
micromark("![](/url)"),
"![\"\"](\"/url\")
",
"should support images w/ empty labels"
);
assert_eq!(
micromark("[bar]: /url\n\n![foo][bar]"),
"![\"foo\"](\"/url\")
",
"should support full references (1)"
);
assert_eq!(
micromark("[BAR]: /url\n\n![foo][bar]"),
"![\"foo\"](\"/url\")
",
"should support full references (2)"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n![foo][]"),
"![\"title\" \"foo\"](\"/url\")
",
"should support collapsed references (1)"
);
assert_eq!(
micromark("[*foo* bar]: /url \"title\"\n\n![*foo* bar][]"),
"![\"title\" \"foo](\"/url\")
",
"should support collapsed references (2)"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n![Foo][]"),
"![\"title\" \"Foo\"](\"/url\")
",
"should support case-insensitive labels"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n![foo] \n[]"),
"
\n[]
",
"should not support whitespace between sets of brackets"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n![foo]"),
"![\"title\" \"foo\"](\"/url\")
",
"should support shortcut references (1)"
);
assert_eq!(
micromark("[*foo* bar]: /url \"title\"\n\n![*foo* bar]"),
"![\"title\" \"foo](\"/url\")
",
"should support shortcut references (2)"
);
assert_eq!(
micromark("[[foo]]: /url \"title\"\n\n![[foo]]"),
"[[foo]]: /url "title"
\n![[foo]]
",
"should not support link labels w/ unescaped brackets"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n![Foo]"),
"![\"title\" \"Foo\"](\"/url\")
",
"should support case-insensitive label matching"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n!\\[foo]"),
"![foo]
",
"should “support” an escaped bracket instead of an image"
);
assert_eq!(
micromark("[foo]: /url \"title\"\n\n\\![foo]"),
"!foo
",
"should support an escaped bang instead of an image, but still have a link"
);
// Extra
assert_eq!(
micromark("![foo]()"),
"![\"foo\"](\"\")
",
"should support images w/o destination"
);
assert_eq!(
micromark("![foo](<>)"),
"![\"foo\"](\"\")
",
"should support images w/ explicit empty destination"
);
assert_eq!(
micromark("![](example.png)"),
"![\"\"](\"example.png\")
",
"should support images w/o alt"
);
assert_eq!(
micromark("![alpha](bravo.png \"\")"),
"![\"alpha\"](\"bravo.png\")
",
"should support images w/ empty title (1)"
);
assert_eq!(
micromark("![alpha](bravo.png '')"),
"![\"alpha\"](\"bravo.png\")
",
"should support images w/ empty title (2)"
);
assert_eq!(
micromark("![alpha](bravo.png ())"),
"![\"alpha\"](\"bravo.png\")
",
"should support images w/ empty title (3)"
);
assert_eq!(
micromark("![&©&](example.com/&©& \"&©&\")"),
"![\"&©&\" \"&©&\"](\"example.com/&%C2%A9&\")
",
"should support character references in images"
);
// Extra
// See:
assert_eq!(
micromark("![](<> \"\")"),
"![\"\"](\"\")
",
"should ignore an empty title"
);
assert_eq!(
micromark_with_options(
"![x]()",
&Options {
constructs: Constructs {
label_start_image: false,
..Constructs::default()
},
..Options::default()
}
),
"!x
",
"should support turning off label start (image)"
);
assert_eq!(
micromark("![](javascript:alert(1))"),
"![\"\"](\"\")
",
"should ignore non-http protocols by default"
);
assert_eq!(
micromark_with_options(
"![](javascript:alert(1))",
&Options {
allow_dangerous_protocol: true,
..Options::default()
}
),
"![\"\"](\"javascript:alert(1)\")
",
"should allow non-http protocols w/ `allowDangerousProtocol`"
);
}