I am knitting my Rmd file into HTML. Since there are a lot of codes in my Rmd file, I did the following so that my reader can navigate to a certain section within the HTML file:
---
title: "xxx"
author: "xxx"
date: "xx/xx/xx"
output:
html_document:
toc: true
toc_float: true
---
However, the TOC in the HTML file is not working correctly:
Is there a way to solve such issue ? Thanks a lot!