diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 11:58:48 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 11:58:48 +0200 |
commit | 912f91b2b35be6b0d05dd768d67599d76151bc5c (patch) | |
tree | f19ad643607610cdedd8934e8ade0afbaf9384ea /src/construct/definition.rs | |
parent | 24fec22e912c1aa2569e95683ca95edf1aafce8b (diff) | |
download | markdown-rs-912f91b2b35be6b0d05dd768d67599d76151bc5c.tar.gz markdown-rs-912f91b2b35be6b0d05dd768d67599d76151bc5c.tar.bz2 markdown-rs-912f91b2b35be6b0d05dd768d67599d76151bc5c.zip |
Add docs to destination, label, title
Diffstat (limited to '')
-rw-r--r-- | src/construct/definition.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/definition.rs b/src/construct/definition.rs index e540b44..3035a20 100644 --- a/src/construct/definition.rs +++ b/src/construct/definition.rs @@ -14,7 +14,7 @@ //! //! destination ::= destination_enclosed | destination_raw //! destination_enclosed ::= '<' *( destination_enclosed_text | destination_enclosed_escape ) '>' -//! destination_enclosed_text ::= code - '<' - '\\' - eol +//! destination_enclosed_text ::= code - '<' - '\\' - '>' - eol //! destination_enclosed_escape ::= '\\' [ '<' | '\\' | '>' ] //! destination_raw ::= 1*( destination_raw_text | destination_raw_escape ) //! ; Restriction: unbalanced `)` characters are not allowed. |