Following the Bookdown manual, I'm trying to create a two-level list for gitbook output. Bookdown says I should do this:
+ one
+ two
+ two-a
+ two-b
Which should look like
- one
- two
- two-a
- two-b
But instead Bookdown seems to be ignoring the + and seeing it as a code chunk because of the indent, and I get this:
- one
- two
two-a
two-b
If I just knit the chapter to HTML, the list renders properly. Any ideas what I'm doing wrong?