Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/create/extensions/brand/example.qmd
12923 views
---
title: your brand extension
---

# brand.yml extension

Here is some inline code: `def foo(x): return x`{.python} and `y`{.python} and `z`{.python}.

Here is [a link](https://example.com).

Here is a code block:

```{.r}
# | echo: true
fibonacci <- function(n) {
  if (n <= 0) {
    return(NULL)
  } else if (n == 1) {
    return(0)
  } else if (n == 2) {
    return(1)
  } else {
    return(fibonacci(n - 1) + fibonacci(n - 2))
  }
}
```