mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 21:01:10 +00:00
Fix markdown plugin rendering
This commit is contained in:
parent
1c5229430f
commit
a39a7ae5e6
1 changed files with 7 additions and 4 deletions
|
@ -47,15 +47,16 @@ impl InlineRule for ArticleLinkScanner {
|
||||||
}
|
}
|
||||||
const SEPARATOR_LENGTH: usize = 2;
|
const SEPARATOR_LENGTH: usize = 2;
|
||||||
|
|
||||||
input.find("]]").and_then(|i| {
|
input.find("]]").and_then(|length| {
|
||||||
let start = state.pos + SEPARATOR_LENGTH;
|
let start = state.pos + SEPARATOR_LENGTH;
|
||||||
|
let i = start + length - SEPARATOR_LENGTH;
|
||||||
let content = &state.src[start..i];
|
let content = &state.src[start..i];
|
||||||
content.split_once('@').map(|(title, domain)| {
|
content.split_once('@').map(|(title, domain)| {
|
||||||
let node = Node::new(ArticleLink {
|
let node = Node::new(ArticleLink {
|
||||||
title: title.to_string(),
|
title: title.to_string(),
|
||||||
domain: domain.to_string(),
|
domain: domain.to_string(),
|
||||||
});
|
});
|
||||||
(node, i + SEPARATOR_LENGTH)
|
(node, length + SEPARATOR_LENGTH)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -64,9 +65,11 @@ impl InlineRule for ArticleLinkScanner {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_markdown_article_link() {
|
fn test_markdown_article_link() {
|
||||||
let parser = markdown_parser();
|
let parser = markdown_parser();
|
||||||
let rendered = parser.parse("[[Title@example.com]]").render();
|
let rendered = parser
|
||||||
|
.parse("some text [[Title@example.com]] and more")
|
||||||
|
.render();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
"<p><a href=\"/article/Title@example.com\">Title</a></p>\n",
|
"<p>some text <a href=\"/article/Title@example.com\">Title</a> and more</p>\n",
|
||||||
rendered
|
rendered
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue