I love the idea of quarto manuscripts. However, I want get rid of the identation and numbering of code chunk output (see screenshot) to get closer to the style of a classic quarto html.
You could turn off cell-decorator class display through CSS.
custom.css:
.cell-decorator {
display: none;
}
Include CSS in YAML block of index.qmd:
---
...
format:
html:
css: custom.css
---
And Article Notebook of the template should render as:

