We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4ac4b commit 9d27cdfCopy full SHA for 9d27cdf
README.md
@@ -132,13 +132,23 @@ assert_eq!("Item".to_source(), "* Item")
132
133
#### Quote
134
135
+##### Struct
136
+
137
``` rust
138
match Quote::from("> Quote") {
139
Some(quote) => assert_eq!(quote.value, "Quote"),
140
None => assert!(false),
141
}
142
```
143
144
+##### Trait
145
146
+``` rust
147
+use ggemtext::line::quote::Gemtext;
148
+assert_eq!("> Quote".as_value(), Some("Quote"))
149
+assert_eq!("Quote".to_source(), "> Quote")
150
+```
151
152
## Integrations
153
154
* [Yoda](https://github.com/YGGverse/Yoda) - Browser for Gemini Protocol
0 commit comments