diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 18:14:15 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-20 18:14:15 +0200 |
commit | c7a46d3cc22bd0b029ff97623cee31c6ec38fdfb (patch) | |
tree | cc8991179de6efc57fbefdcd5fbebaeb872e878e /src/util | |
parent | 65dd765cceee8bdccc74c08066eec59a579a16b1 (diff) | |
download | markdown-rs-c7a46d3cc22bd0b029ff97623cee31c6ec38fdfb.tar.gz markdown-rs-c7a46d3cc22bd0b029ff97623cee31c6ec38fdfb.tar.bz2 markdown-rs-c7a46d3cc22bd0b029ff97623cee31c6ec38fdfb.zip |
Add support for line endings in string
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/link.rs | 8 | ||||
-rw-r--r-- | src/util/mod.rs | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/util/link.rs b/src/util/link.rs new file mode 100644 index 0000000..917ce4d --- /dev/null +++ b/src/util/link.rs @@ -0,0 +1,8 @@ +//! To do. + +use crate::tokenizer::Event; + +pub fn link(events: &mut [Event], index: usize) { + events[index - 2].next = Some(index); + events[index].previous = Some(index - 2); +} diff --git a/src/util/mod.rs b/src/util/mod.rs index c3db267..5439c62 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -2,5 +2,6 @@ pub mod decode_character_reference; pub mod encode; +pub mod link; pub mod sanitize_uri; pub mod span; |