layout-ncol
This should be three columns with list elements in each but is one long list.
List 1
List 1
List 1
List 2
List 2
List 2
List 3
List 3
List 3
layout-ncol
This should be three columns with list elements in each but adding \n
breaks the orientation.
- List 1
- List 1
- List 1
- List 2
- List 2
- List 2
- List 3
- List 3
- List 3
layout-ncol
This should be three columns with list elements in each but adding <!-- -->
breaks the orientation.
- List 1
- List 1
- List 1
- List 2
- List 2
- List 2
- List 3
- List 3
- List 3
layout-ncol
with sub-div
This works, but requires manually “breaking” the list with another nested div
- Column 1
- Column 2
- Column 3
layout
This works with a different layout, but only because the list is split up by paragraph of text.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- Bullets
- More bullets
- Some additional bullets
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<!-- -->
::: {.quarto-embedded-source-code}
```````````````````{.markdown shortcodes="false"}
---
title: " "
format:
html:
code-tools:
source: true
---
# `layout-ncol`
This should be three columns with list elements in each but is one long list.
::::{layout-ncol=3}
- List 1
- List 1
- List 1
- List 2
- List 2
- List 2
- List 3
- List 3
- List 3
::::
# `layout-ncol`
This should be three columns with list elements in each but adding `\n` breaks the orientation.
:::{layout-ncol=3}
- List 1
- List 1
- List 1
\n
- List 2
- List 2
- List 2
\n
- List 3
- List 3
- List 3
:::
# `layout-ncol`
This should be three columns with list elements in each but adding `<!-- -->` breaks the orientation.
:::{layout-ncol=3}
- List 1
- List 1
- List 1
<!--break-->
- List 2
- List 2
- List 2
<!--break-->
- List 3
- List 3
- List 3
:::
# `layout-ncol` with sub-div
This works, but requires manually "breaking" the list with another nested div
::::{layout-ncol=3}
- Column 1
:::{#col2}
- Column 2
:::
- Column 3
::::
# `layout`
This works with a different layout, but only because the list is split up by paragraph of text.
::: {layout="[ [1], [1,1] ]"}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
- Bullets
- More bullets
- Some additional bullets
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
:::
``````````````````` :::