I would like to justify all the text in my gitbook, but I couldn't find a solution. So far I've tried:
Set the text-align as justified in the style/body, right after the YAML Header:
<style> body { text-align: justify } </style>
It doesn't work.
Set the text-align as justified in div tag for the whole text:
<div style="text-align:justify;"> my whole text </div>
It works, but the numbering of the topics are lost (probably with other features I didn't figure out).
The thing is, I don't want to lose any standard feature of the output from bookdown::gitbook but the "text-align" (which I want it to be justified).
Also, it would be too much work to have to put a div tag in all the sentences. Any help?
Thanks in advance!