Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/dev-docs/feature-format-matrix/qmd-files/code-cells/code-line-numbers/document.qmd
3593 views
---
title: "Plot Test"
format: 
  docusaurus-md: {}
code-line-numbers: true
knitr:
  opts_chunk: 
      eval: false
---

# with line number comment {#with-numbering}

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

# no line number comment {#no-numbering}

```{r}
#| code-line-numbers: false
1 + 2
```