Is there a way to add a </br> without +++</br>++++

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Is there a way to add a </br> without +++</br>++++

ch007m
Hi,

Is there a way to add empty line with a </br> tag to add more space between lines ?

What is generated

<h2><strong>Development of Social Network Projects with Camel</strong></h2>
            <div class="paragraph"><p>DevNation / 14th of April - 2014</p></div>
            <div class="paragraph"><p><a href="http://twitter.com/cmoulliard">@cmoulliard</a>[Charles Moulliard]</p></div>
            <div class="paragraph"><p></p>Architect, Engineer &amp; Committer</p></div>

Should be

<h2><strong>Development of Social Network Projects with Camel</strong></h2>
            <div class="paragraph"><p>DevNation / 14th of April - 2014</p></div>
            </br>
            <div class="paragraph"><p><a href="http://twitter.com/cmoulliard">@cmoulliard</a>[Charles Moulliard]</p></div>
            <div class="paragraph"><p></p>Architect, Engineer &amp; Committer</p></div>
Charles Moulliard
Apache Committer / Technologist Evangelist / Blogger / MiddleWare Specialist
Twitter : @cmoulliard
Reply | Threaded
Open this post in threaded view
|

Re: Is there a way to add a </br> without +++</br>++++

ch007m
Trick found for the moment is to do that

[.newline]
http://twitter.com/{twitter}[{author}] +
Architect, Engineer & Committer

and in the css

.newline:before {
    content: '\A';
    white-space:pre;
}

If somebody has a better idea, ....

Charles Moulliard
Apache Committer / Technologist Evangelist / Blogger / MiddleWare Specialist
Twitter : @cmoulliard
Reply | Threaded
Open this post in threaded view
|

Re: Is there a way to add a </br> without +++</br>++++

LightGuardjp
Needing an extra line between paragraphs usually doesn't come up very often. Your little hack is probably good enough.


On Thu, Mar 20, 2014 at 3:09 AM, ch007m [via Asciidoctor :: Discussion] <[hidden email]> wrote:
Trick found for the moment is to do that

[.newline]
http://twitter.com/{twitter}[{author}] +
Architect, Engineer & Committer

and in the css

.newline:before {
    content: '\A';
    white-space:pre;
}

If somebody has a better idea, ....

Charles Moulliard
Apache Committer / Technologist Evangelist / Blogger / MiddleWare Specialist
Twitter : @cmoulliard



If you reply to this email, your message will be added to the discussion below:
http://discuss.asciidoctor.org/Is-there-a-way-to-add-a-br-without-br-tp1628p1629.html
To start a new topic under Asciidoctor :: Discussion, email [hidden email]
To unsubscribe from Asciidoctor :: Discussion, click here.
NAML



--