From fc2df000c04d653d32201f55c8d9291afe5eaeb8 Mon Sep 17 00:00:00 2001 From: trisua Date: Thu, 14 Aug 2025 03:16:23 -0400 Subject: [PATCH] fix: details docs --- src/markdown.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.rs b/src/markdown.rs index aba7642..b4d500d 100644 --- a/src/markdown.rs +++ b/src/markdown.rs @@ -811,7 +811,7 @@ pub fn parse_page(input: &str) -> String { /// Parse the markdown syntax for the expandable `
` element. /// /// Similar to the [`parse_page`] page definitions, details elements are denoted -/// with two ampersand symbols. The opening line should look like `&& [summary]; [open?]`. +/// with two ampersand symbols. The opening line should look like `&& [summary]`. /// /// The block is closed with a line of exactly two ampersand symbols. ///