Quarto Tabsets

Creating tabsets with Quarto
Quarto
Author

Caleb Grant

Published

August 7, 2023

Tabsets can be useful when you want to show multiple flavors of the same thing. For example, what’s the command to copy files on PowerShell, CMD, and Bash?

Copy a file or directory.

cp -rf file.txt ./output/

Copy a file or directory.

CopyItem -Recurse -Force file.txt .\output\

Copy a file or directory.

xcopy file.txt .\output\ /E/H