-1

I have the following asciidoc where I would like to have multiple section titles.

= REST API
== Token
Tokens are used for making authenticated requests to the API.
=== Getting a token
This is how you get a token

But it ends up looking something like this, the second section title (Token) isnt working.

enter image description here

secondbreakfast
  • 4,194
  • 5
  • 47
  • 101

1 Answers1

0

The solution was to insert line breaks between each section

= REST API

== Token

Tokens are used for making authenticated requests to the API.

=== Getting a token
This is how you get a token
secondbreakfast
  • 4,194
  • 5
  • 47
  • 101