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 92e1557 commit 0c6ba0cCopy full SHA for 0c6ba0c
README.md
@@ -32,6 +32,8 @@ for line in gemtext.lines() {
32
33
##### Inline
34
35
+**Struct**
36
+
37
``` rust
38
use ggemtext::line::code::Inline;
39
match Inline::from("```inline```") {
@@ -40,6 +42,14 @@ match Inline::from("```inline```") {
40
42
}
41
43
```
44
45
+**Trait**
46
47
+``` rust
48
+use ggemtext::line::code::inline::Gemtext;
49
+assert_eq!("```inline```".as_value(), Some("inline"))
50
+assert_eq!("inline".to_source(), "```inline```")
51
+```
52
53
##### Multiline
54
55
0 commit comments