File tree Expand file tree Collapse file tree 4 files changed +25
-8
lines changed Expand file tree Collapse file tree 4 files changed +25
-8
lines changed Original file line number Diff line number Diff line change @@ -265,12 +265,6 @@ local quarto_pre_filters = {
265265 traverser = ' jog' ,
266266 },
267267
268- { name = " pre-process-list-tables" ,
269- filters = _quarto .modules .listtable .list_table_filter (),
270- flags = { " has_list_tables" },
271- traverser = ' jog' ,
272- },
273-
274268 { name = " pre-server-shiny" ,
275269 filter = server_shiny (),
276270 traverser = ' jog' ,
Original file line number Diff line number Diff line change 247247
248248return {
249249 list_table_filter = function ()
250- return {{ Div = process } }
250+ return {Div = process }
251251 end
252252}
Original file line number Diff line number Diff line change @@ -323,6 +323,11 @@ function quarto_ast_pipeline()
323323 end
324324
325325 return {
326+ { name = " astpipeline-process-list-tables" ,
327+ filter = _quarto .modules .listtable .list_table_filter (),
328+ traverser = ' jog' ,
329+ },
330+
326331 { name = " astpipeline-process-tables" ,
327332 filter = astpipeline_process_tables (),
328333 traverser = ' jog' ,
Original file line number Diff line number Diff line change @@ -36,4 +36,22 @@ See @tbl-letters.
3636Main Caption
3737:::
3838
39- See @tbl-panel for details, especially @tbl-second .
39+ See @tbl-panel for details, especially @tbl-second .
40+
41+ ## List tables
42+
43+ ::: {#tbl-list .list-table}
44+
45+ This has a caption. {tbl-colwidths=[ 20,40,40] }
46+
47+ * - Row 1, Col 1
48+ - Row 1, Col 2
49+ - Row 1, Col 3
50+
51+ * - Row 2, Col 1
52+ - Row 2, Col 2
53+ - Row 2, Col 3
54+
55+ :::
56+
57+ see @tbl-list .
You can’t perform that action at this time.
0 commit comments