I'll try again:
Hello,
This is my first post! I have made an rmarkdown document like the below minimal example that uses Shiny. My problem is with the links to the sections. They work fine in RStudio, but for some reason, when the .Rmd file is put on my Shiny server and accessed from the web, the link #top
works but the link #template
does not. (Links below commented out because of rule "new users can only use 2 links.)
---
title: "Step by step normal app"
author: "Dan"
date: "March 1, 2018"
output: html_document
runtime: shiny
---
Stuff above the introduction.
## Introduction {`#top`}
## The Template {`#template`}
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
t
This should make a [link to the top of the page](`#top`).
This should make a [link to the template](`#template`).