Skip to content

Commit a5a956e

Browse files
committed
more list-table fixes for pandoc 3.6 misparses
1 parent 7c6b4b2 commit a5a956e

File tree

13 files changed

+116
-58
lines changed

13 files changed

+116
-58
lines changed

docs/authoring/article-layout.qmd

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -435,14 +435,16 @@ Here are all of the available column specifiers:
435435

436436
* * Body
437437

438-
* ```
438+
*
439+
```
439440
column: body
440441
column: body-outset
441442
column: body-outset-left
442443
column: body-outset-right
443444
```
444445
445-
* ```
446+
*
447+
```
446448
.column-body
447449
.column-body-outset
448450
.column-body-outset-left
@@ -451,42 +453,48 @@ Here are all of the available column specifiers:
451453
452454
* * Page Inset
453455
454-
* ```
456+
*
457+
```
455458
column: page-inset
456459
column: page-inset-left
457460
column: page-inset-right
458461
```
459462
460-
* ```
463+
*
464+
```
461465
.column-page-inset
462466
.column-page-inset-left
463467
.column-page-inset-right
464468
```
465469
466470
* * Page
467471
468-
* ```
472+
*
473+
```
469474
column: page
470475
column: page-left
471476
column: page-right
472477
```
473478
474-
* ```
479+
*
480+
```
475481
.column-page
476482
.column-page-left
477483
.column-page-right
478484
```
479485
480486
* * Screen Inset
481487
482-
* ```
488+
*
489+
```
483490
column: screen-inset
484491
column: screen-inset-shaded
485492
column: screen-inset-left
486493
column: screen-inset-right
487494
```
488495
489-
* ```
496+
*
497+
```
490498
.column-screen-inset
491499
.column-screen-inset-shaded
492500
.column-screen-inset-left
@@ -495,25 +503,29 @@ Here are all of the available column specifiers:
495503
496504
* * Screen
497505
498-
* ```
506+
*
507+
```
499508
column: screen
500509
column: screen-left
501510
column: screen-right
502511
```
503512
504-
* ```
513+
*
514+
```
505515
.column-screen
506516
.column-screen-left
507517
.column-screen-right
508518
```
509519
510520
* * Margin
511521
512-
* ```
522+
*
523+
```
513524
column: margin
514525
```
515526
516-
* ```
527+
*
528+
```
517529
.column-margin
518530
```
519531

docs/computations/caching.qmd

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,22 @@ To use Jupyter Cache you'll want to first install the `jupyter-cache` package:
2121

2222
* * Mac/Linux
2323

24-
* ```bash {.bash filename="Terminal"}
24+
*
25+
```bash {.bash filename="Terminal"}
2526
python3 -m pip install jupyter-cache
2627
```
2728

2829
* * Windows
2930

30-
* ```powershell {.powershell filename="Terminal"}
31+
*
32+
```powershell {.powershell filename="Terminal"}
3133
py -m pip install jupyter-cache
3234
```
3335

3436
* * Conda
3537

36-
* ```bash {.bash filename="Terminal"}
38+
*
39+
```bash {.bash filename="Terminal"}
3740
conda install jupyter-cache
3841
```
3942

docs/computations/julia.qmd

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -651,19 +651,22 @@ To use Jupyter Cache you'll want to first install the `jupyter-cache` package:
651651

652652
* * Mac/Linux
653653

654-
* ```bash {.bash filename="Terminal"}
654+
*
655+
```bash {.bash filename="Terminal"}
655656
python3 -m pip install jupyter-cache
656657
```
657658

658659
* * Windows
659660

660-
* ```powershell {.powershell filename="Terminal"}
661+
*
662+
```powershell {.powershell filename="Terminal"}
661663
py -m pip install jupyter-cache
662664
```
663665

664666
* * Conda
665667

666-
* ```bash {.bash filename="Terminal"}
668+
*
669+
```bash {.bash filename="Terminal"}
667670
conda install jupyter-cache
668671
```
669672

docs/get-started/computations/jupyter.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,16 @@ The commands you can use for installation and opening Jupyter Lab are given in t
3232

3333
* * Mac/Linux
3434

35-
* ```bash {.bash filename="Terminal"}
35+
*
36+
```bash {.bash filename="Terminal"}
3637
python3 -m pip install jupyter matplotlib plotly pandas
3738
python3 -m jupyter lab computations.ipynb
3839
```
3940

4041
* * Windows
4142

42-
* ```powershell {.powershell filename="Terminal"}
43+
*
44+
```powershell {.powershell filename="Terminal"}
4345
py -m pip install jupyter matplotlib plotly pandas
4446
py -m jupyter lab computations.ipynb
4547
```

docs/get-started/computations/vscode.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ The commands you can use to install them are given in the table below.
2525

2626
* * Mac/Linux
2727

28-
* ```bash {.bash filename="Terminal"}
28+
*
29+
```bash {.bash filename="Terminal"}
2930
python3 -m pip install jupyter matplotlib plotly pandas
3031
```
3132

3233
* * Windows
3334

34-
* ```powershell {.powershell filename="Terminal"}
35+
*
36+
```powershell {.powershell filename="Terminal"}
3537
py -m pip install jupyter matplotlib plotly pandas
3638
```
3739

docs/get-started/hello/jupyter.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,17 @@ Next, execute these commands to install JupyterLab along with the packages used
4747

4848
* * Mac/Linux
4949

50-
* ```bash {.bash filename="Terminal"}
50+
*
51+
```bash {.bash filename="Terminal"}
5152
python3 -m pip install jupyter jupyterlab
5253
python3 -m pip install matplotlib plotly
5354
python3 -m jupyter lab hello.ipynb
5455
```
5556

5657
* * Windows
5758

58-
* ```bash {.bash filename="Terminal"}
59+
*
60+
```bash {.bash filename="Terminal"}
5961
py -m pip install jupyter jupyterlab
6062
py -m pip install matplotlib plotly
6163
py -m jupyter lab hello.ipynb

docs/get-started/hello/neovim.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,15 @@ The tutorials will make use of the `matplotlib` and `plotly` Python packages---t
6868

6969
* * Mac/Linux
7070

71-
* ```bash {.bash filename="Terminal"}
71+
*
72+
```bash {.bash filename="Terminal"}
7273
python3 -m pip install jupyter matplotlib plotly
7374
```
7475

7576
* * Windows
7677

77-
* ```powershell {.powershell filename="Terminal"}
78+
*
79+
```powershell {.powershell filename="Terminal"}
7880
py -m pip install jupyter matplotlib plotly
7981
```
8082

docs/get-started/hello/text-editor.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ The tutorials will make use of the `matplotlib` and `plotly` Python packages---t
3232

3333
* * Mac/Linux
3434

35-
* ```bash {.bash filename="Terminal"}
35+
*
36+
```bash {.bash filename="Terminal"}
3637
python3 -m pip install jupyter matplotlib plotly
3738
```
3839

3940
* * Windows
4041

41-
* ```powershell {.powershell filename="Terminal"}
42+
*
43+
```powershell {.powershell filename="Terminal"}
4244
py -m pip install jupyter matplotlib plotly
4345
```
4446

docs/get-started/hello/vscode.qmd

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,15 @@ The tutorials will make use of the `matplotlib` and `plotly` Python packages---t
4747

4848
* * Mac/Linux
4949

50-
* ```bash {.bash filename="Terminal"}
50+
*
51+
```bash {.bash filename="Terminal"}
5152
python3 -m pip install jupyter matplotlib plotly
5253
```
5354

5455
* * Windows
5556

56-
* ```powershell {.powershell filename="Terminal"}
57+
*
58+
```powershell {.powershell filename="Terminal"}
5759
py -m pip install jupyter matplotlib plotly
5860
```
5961

@@ -108,13 +110,15 @@ Note that if you are following along be sure to install the required dependencie
108110

109111
* * Mac/Linux
110112

111-
* ```bash {.bash filename="Terminal"}
113+
*
114+
```bash {.bash filename="Terminal"}
112115
python3 -m pip install jupyter matplotlib plotly
113116
```
114117

115118
* * Windows
116119

117-
* ```powershell {.powershell filename="Terminal"}
120+
*
121+
```powershell {.powershell filename="Terminal"}
118122
py -m pip install jupyter matplotlib plotly
119123
```
120124

docs/projects/quarto-projects.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ Note that when metadata is combined, objects and arrays are merged rather than s
127127

128128
```
129129

130-
* ```yaml {.yaml filename="dir/_metadata.yml"}
130+
*
131+
```yaml {.yaml filename="dir/_metadata.yml"}
131132
format:
132133
html:
133134
code-fold: true
@@ -136,7 +137,8 @@ Note that when metadata is combined, objects and arrays are merged rather than s
136137
137138
```
138139

139-
* ```yaml {.yaml filename="merged"}
140+
*
141+
```yaml {.yaml filename="merged"}
140142
format:
141143
html:
142144
toc: true

0 commit comments

Comments
 (0)