aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/readme.md b/readme.md
index d8a064a..bfe0dff 100644
--- a/readme.md
+++ b/readme.md
@@ -90,8 +90,6 @@ cargo add markdown@1.0.0-alpha.3
## Use
```rs
-extern crate markdown;
-
fn main() {
println!("{}", markdown::to_html("## Hello, *world*!"));
}
@@ -106,8 +104,6 @@ Yields:
Extensions (in this case GFM):
```rs
-extern crate markdown;
-
fn main() -> Result<(), String> {
println!(
"{}",
@@ -136,8 +132,6 @@ Yields:
Syntax tree ([mdast][]):
```rs
-extern crate markdown;
-
fn main() -> Result<(), String> {
println!(
"{:?}",