Get rid of numbers and indentation in quarto manuscript

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:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.