Skip to content

Commit e4b6beb

Browse files
committed
fix documentation in plugins/extra
closes #13
1 parent 79e59b2 commit e4b6beb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/plugins/extra/mod.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
//! Frequently used markdown extensions and stuff from GFM.
22
//!
3-
//! It currently includes `~~strikethrough~~` syntax, other things like
4-
//! tables may be included here in the future.
3+
//! - strikethrough (~~xxx~~~)
4+
//! - 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+
//!
510
//! ```rust
611
//! let md = &mut markdown_it::MarkdownIt::new();
712
//! markdown_it::plugins::cmark::add(md);

0 commit comments

Comments
 (0)