aboutsummaryrefslogtreecommitdiff
path: root/examples/ast_to_gemtext.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-05-18 06:24:50 +0000
committerFuwn <[email protected]>2023-05-18 06:24:50 +0000
commit56f53ddca0135e17708af585bfb50144d6836f55 (patch)
tree1d5beea4c266a7d9bdd50fe4750540d618b0b160 /examples/ast_to_gemtext.rs
parentfix: improve macro hygiene (diff)
downloadgerm-56f53ddca0135e17708af585bfb50144d6836f55.tar.xz
germ-56f53ddca0135e17708af585bfb50144d6836f55.zip
fmt: update rustfmt.toml
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());
}