1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-22 02:01:09 +00:00

Remove autolink markdown rule (fixes #74)

This commit is contained in:
Felix Ableitner 2024-10-23 11:14:49 +02:00
parent 444be44008
commit 61fb9081ec

View file

@ -29,7 +29,6 @@ pub fn render_markdown(text: &str) -> String {
fn markdown_parser() -> MarkdownIt {
let mut parser = MarkdownIt::new();
markdown_it::plugins::cmark::add(&mut parser);
markdown_it::plugins::extra::linkify::add(&mut parser);
markdown_it::plugins::extra::strikethrough::add(&mut parser);
markdown_it::plugins::extra::tables::add(&mut parser);
markdown_it::plugins::extra::typographer::add(&mut parser);