From 148bc9b37af5f0ee53bf36953eb9a1e3c8ef6ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Such=C3=A1nek?= Date: Tue, 27 Feb 2024 14:19:41 +0100 Subject: [PATCH] Comments are now disabled by default; #22 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e3d0d63..f4370f3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -87,7 +87,7 @@ impl Options { impl Default for Options { fn default() -> Self { Self { - comments: true, + comments: false, file_prefixes: true, anchor_prefixes: false, examples: true,