Re: float margin differs
Posted by
mojavelinux on
Dec 10, 2019; 6:57pm
URL: https://discuss.asciidoctor.org/float-margin-differs-tp7403p7410.html
I'm glad to hear you figured it out!
What you are asking is something you can do with your own converter. It's out of scope for the built-in converter in core. AsciiDoc is not a general purpose layout language. But you are free to customize the HTML that it generates using a custom converter.
Best,
-Dan
On Tue, Dec 10, 2019 at 8:51 AM patrix [via Asciidoctor :: Discussion] <
[hidden email]> wrote:
I figured it out.
I need to clear the floats. I do this by adding [.clearfix] in front of all sections or at other relevant points.
What I do not like about this solution is that [.clearfix] generates a <div>, if there is no block after the [.clearfix] than it will not close the <div> (or it does it somewhere, where I did not expect it).
Can we detect this fact of not having a block after the [.clearfix] and (for those cases only) just add </div> in the same line?
--