Created
June 15, 2023 20:13
-
-
Save ChrisBeeley/90889f6d8c4746af2fbf017117e6603c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Minimal example" | |
author: "Chris Beeley" | |
date: "1 September 2015" | |
output: word_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
``` | |
```{r, results = 'asis', echo = FALSE} | |
headings = letters[1:4] | |
invisible( | |
sapply(headings, function(x){ | |
cat(paste0("#", x, "\n")) | |
cat(paste0("<p>", rep("Some text here", 10), "</p>")) | |
}) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment