summaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
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()