We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02863f6 commit e336268Copy full SHA for e336268
crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/pipe_table.rs
@@ -152,6 +152,9 @@ pub fn process_pipe_table(
152
let mut colspec: Vec<ColSpec> = Vec::new();
153
let mut rows: Vec<Row> = Vec::new();
154
for (node, child) in children {
155
+ if node == "block_continuation" {
156
+ continue; // skip block continuation nodes
157
+ }
158
if node == "pipe_table_header" {
159
if let PandocNativeIntermediate::IntermediateRow(row) = child {
160
header = Some(row);
crates/quarto-markdown-pandoc/tests/smoke/019.qmd
@@ -0,0 +1,9 @@
1
+::: {#fig-table .column-margin}
2
+
3
+| A | B |
4
+|---|---|
5
+| C | D |
6
7
+A table treated like a figure
8
9
+:::
0 commit comments