diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-22 11:50:42 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-22 11:50:42 +0200 |
commit | 351c69644bdbdf52c95e322904273657892920b5 (patch) | |
tree | 114a93ff760b522232f9f7290bc6f632b7250095 /examples | |
parent | 5e6829c2fb79c2b7f59e38f924e2b2900c52b5d5 (diff) | |
download | markdown-rs-351c69644bdbdf52c95e322904273657892920b5.tar.gz markdown-rs-351c69644bdbdf52c95e322904273657892920b5.tar.bz2 markdown-rs-351c69644bdbdf52c95e322904273657892920b5.zip |
Add support for GFM strikethrough
Diffstat (limited to 'examples')
-rw-r--r-- | examples/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/lib.rs b/examples/lib.rs index 94e04f5..167f169 100644 --- a/examples/lib.rs +++ b/examples/lib.rs @@ -26,6 +26,7 @@ fn main() { println!( "{}", micromark_with_options( + // To do: use readme example when all of GFM work. "Just a link! https://example.com.", &Options { constructs: Constructs::gfm(), |