Skip to content

Commit 8a4d123

Browse files
authored
fix(regression): handle escaping | in code blocks in tables (#118)
1 parent fc8d3b6 commit 8a4d123

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

src/generation/cmark/parse_cmark_ast.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fn parse_event(event: Event, iterator: &mut EventIterator) -> Result<Node, Parse
177177
match event {
178178
Event::Start(tag) => parse_start(tag, iterator),
179179
Event::End(_) => Ok(iterator.get_not_implemented()), // do nothing
180-
Event::Code(code) => parse_code(code, iterator).map(|x| x.into()),
180+
Event::Code(_) => parse_code(iterator).map(|x| x.into()),
181181
Event::Text(_) => parse_text(iterator).map(|x| x.into()),
182182
Event::Html(html) => parse_html(html, iterator).map(|x| x.into()),
183183
Event::InlineHtml(html) => parse_html(html, iterator).map(Into::into),
@@ -318,7 +318,11 @@ fn parse_code_block(code_block_kind: CodeBlockKind, iterator: &mut EventIterator
318318
while let Some(event) = iterator.next() {
319319
match event {
320320
Event::End(TagEnd::CodeBlock) => break,
321-
Event::Text(event_text) => code.push_str(event_text.as_ref()),
321+
Event::Text(_) => {
322+
let last_range = iterator.get_last_range();
323+
let raw_text = &iterator.file_text[last_range];
324+
code.push_str(raw_text)
325+
}
322326
_ => {
323327
return Err(ParseError::new(
324328
iterator.get_last_range(),
@@ -351,10 +355,14 @@ fn parse_code_block(code_block_kind: CodeBlockKind, iterator: &mut EventIterator
351355
})
352356
}
353357

354-
fn parse_code(code: CowStr, iterator: &mut EventIterator) -> Result<Code, ParseError> {
358+
fn parse_code(iterator: &mut EventIterator) -> Result<Code, ParseError> {
359+
let mut raw_text = &iterator.file_text[iterator.get_last_range()];
360+
while raw_text.starts_with('`') && raw_text.ends_with('`') {
361+
raw_text = &raw_text[1..raw_text.len() - 1];
362+
}
355363
Ok(Code {
356364
range: iterator.get_last_range(),
357-
code: String::from(code.as_ref()),
365+
code: raw_text.to_string(),
358366
})
359367
}
360368

tests/specs/Issues/Issue0117.txt

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
!! should format !!
2+
| f\|oo |
3+
| ------ |
4+
| b `\|` az |
5+
| b **\|** im |
6+
| test \| test |
7+
| `command \| filter` |
8+
9+
[expect]
10+
| f\|oo |
11+
| ------------------- |
12+
| b `\|` az |
13+
| b **\|** im |
14+
| test \| test |
15+
| `command \| filter` |

0 commit comments

Comments
 (0)