Re: Multiple forced line breaks in one paragraph not possible
Posted by
mojavelinux on
Jun 12, 2014; 8:56am
URL: https://discuss.asciidoctor.org/Multiple-forced-line-breaks-in-one-paragraph-not-possible-tp1675p1810.html
Carsten,
This works for me (using Asciidoctor 1.5.0.preview.7). Can you put it in a
gist.github.com and show that it doesn't work there?
Another way to get consecutive lines with hard endlines is to use the hardbreaks option:
```asciidoc
[%hardbreaks]
3
2
1
Lift off!
```
which converts to the following HTML:
```html
<div class="paragraph">
<p>3<br>
2<br>
1<br>
Lift off!</p>
</div>
```
-Dan