gadenbuie / quarto-reprex-listing-chomp

Home Page:http://pkg.garrickadenbuie.com/quarto-reprex-listing-chomp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quarto Reprex: Listing chomps newlines

This site uses a custom listing with this template:

```<%= item.codeLanguage %>
<%= item.code %>
```

and post1.qmd has YAML like this:

---
title: "R code"

codeLanguage: r
code: |
  # Is there a line below this?

  fizz_buzz <- function(fbnums = 1:50) {
    # ...
  }

  # Is there a line above this?
---

When rendered, the newlines in item.code are lost.