I have the following RMarkdown FlexDashboard document :
--- title: "Some title" runtime: shiny output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill --- ```{r setup, include=FALSE} library(flexdashboard) ``` Column {data-width=650} -----------------------------------------------------------------------
How can I put a footer on a page with the following content?
tags$div( HTML("<footer><small>© Copyright 2017, MyCompany Co.,Ltd</small></footer>"))

source share