Install the Extension
To install the quarto-panelize extension, follow these steps:
- Enter a Quarto project. 
- Open your terminal inside the Quarto project. 
- Run the following command: 
quarto add coatless-quarto/panelizeThis command will download and install the extension under the _extensions subdirectory of your Quarto project. If you are using version control, ensure that you include this directory in your repository.
Interactivity
If you wish to use the interactive feature, please make sure to install the following Quarto extensions:
Python
For interactivity with Python, please type into Terminal:
quarto add coatless-quarto/pyodidePlease make sure that panelize is placed before pyodide in the document header filters statement, e.g. 
---
filters:
- panelize
- pyodide
---R
For interactivity with R, please type into Terminal:
quarto add coatless/quarto-webrPlease make sure that panelize is placed before webr in the document header filters statement, e.g. 
---
filters:
- panelize
- webr
---