---
title: "Markdown Demo"
author: "J"
date: "6/14/2021"
output: html_document
---
## Setup
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(DiagrammeR)
```
## R Markdown
```{r}
mermaid("
graph TB;
a ==> b;
b ----> c[apple]
")
```
For some reason the 2nd line in the graph doesn't seem to be rendering because its not realizing the 'longer arrow'. Anyone know how to solve this trivial problem