remove duplicated header anchors

This commit is contained in:
yggverse 2025-03-16 16:44:58 +02:00
parent 3e16995e00
commit 9392b39327

View file

@ -113,7 +113,7 @@ match Link::from(
#### List #### List
##### Struct **Struct**
``` rust ``` rust
match List::parse("* Item") { match List::parse("* Item") {
@ -122,7 +122,7 @@ match List::parse("* Item") {
} }
``` ```
##### Trait **Trait**
``` rust ``` rust
use ggemtext::line::list::Gemtext; use ggemtext::line::list::Gemtext;
@ -132,7 +132,7 @@ assert_eq!("Item".to_source(), "* Item")
#### Quote #### Quote
##### Struct **Struct**
``` rust ``` rust
match Quote::from("> Quote") { match Quote::from("> Quote") {
@ -141,7 +141,7 @@ match Quote::from("> Quote") {
} }
``` ```
##### Trait **Trait**
``` rust ``` rust
use ggemtext::line::quote::Gemtext; use ggemtext::line::quote::Gemtext;