how to occupy the blank space in the quarto document

I am trying to create new quarto document as below , however i am unable to fill the blank space. How could i use the blank space or fill the blank space by extending the content page data. could you please let me know your thoughts

Hi @jkatam

here Page Layout – Quarto you can find the answer.

---
title: "195674"
format:
  html:
    toc: true
    toc-location: left
    grid:
      margin-width: 0px
      body-width: 1200px
editor: visual
---

## Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

## Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

```{r}
1 + 1
```

You can add options to executable code like this

```{r}
#| echo: false
2 * 2
```

The `echo: false` option disables the printing of code (only output is displayed).

will give what you want.

1 Like

Thank you this is very helpful.

This topic was automatically closed 7 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.