aboutsummaryrefslogtreecommitdiff
path: root/examples/ast_to_gemtext.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ast_to_gemtext.rs')
-rw-r--r--examples/ast_to_gemtext.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/ast_to_gemtext.rs b/examples/ast_to_gemtext.rs
index 5ceef21..4b96893 100644
--- a/examples/ast_to_gemtext.rs
+++ b/examples/ast_to_gemtext.rs
@@ -46,8 +46,5 @@ This is more text after a blank line.
That was a link without text."#;
fn main() {
- println!(
- "{}",
- germ::ast::Ast::from_string(EXAMPLE_GEMTEXT).to_gemtext()
- );
+ println!("{}", germ::ast::Ast::from_string(EXAMPLE_GEMTEXT).to_gemtext());
}