We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
plugins/extra
1 parent 79e59b2 commit e4b6bebCopy full SHA for e4b6beb
src/plugins/extra/mod.rs
@@ -1,7 +1,12 @@
1
//! Frequently used markdown extensions and stuff from GFM.
2
//!
3
-//! It currently includes `~~strikethrough~~` syntax, other things like
4
-//! tables may be included here in the future.
+//! - strikethrough (~~xxx~~~)
+//! - tables
5
+//! - linkify (convert http://example.com to a link)
6
+//! - beautify links (cut "http://" from links and shorten paths)
7
+//! - smartquotes and typographer
8
+//! - code block highlighting using `syntect`
9
+//!
10
//! ```rust
11
//! let md = &mut markdown_it::MarkdownIt::new();
12
//! markdown_it::plugins::cmark::add(md);
0 commit comments