Hi,
I have a long script, with code chunks and text. The chunks have titles, and the text has headings.
Is there a way to create a sort of contents list at the start of my code, so I can see what I have without scrolling down? This is not an attempt to make a contents list in the mardown HTML file, but rather in studio itself.
For example:
Sentiment analysis explanation
here is some written text about sentiment analysis
```{r sentiment_code, echo=FALSE, results=FALSE}
# writing code in this chunk
Would have a contents list:
-Sentiment analysis explanation
-sentiment_code
Thanks!