summaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authorSavagePeanut <sourcehut@lazytapir.com>2023-09-03 17:28:57 -0500
committerSavagePeanut <sourcehut@lazytapir.com>2023-09-03 17:28:57 -0500
commit788f64389f5479fcd23844740e7401a8a7870294 (patch)
treea243a73025663ad4720eb83662c58d8e57c0223a /src/parser.rs
parent2028c5a6cff6f5b860b6419cbc1b27a1260dcd00 (diff)
tests passing
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 53c38f6..4f5ae58 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -38,7 +38,6 @@ pub fn parse_with_limits(chars: &Vec<char>, start: usize, end: usize, depth: usi
}
match seek_end_block(chars, c, end_of_line, end, depth) {
Some(to) => {
- println!("to {}", to);
if to != index + 3 && is_quote_start(chars, index, depth) {
let keyword = if end_of_line == index + 3 {
"```".to_string()