In Copy Bible Verses how do I add a new line between verses?

In copy bible verses how do I add spaces between verses. In 3.0 I could add a new line between verses. The syntax was ^n^n^n^v . But I can't find a way to do this in 4.0.
%NoCharFormatting
%NoRedLetter
%NoFootnotes
%NoCitation
=Header
<p><b>[FullPassageRef] ([Version])</b></p>
=ForEachVerse
<p><b>[VerseNum]</b> [VerseText]</p>
For example I would like my verses to look like this: This format is useful in taking notes between verses in Word.
Genesis 1:1-15
1 In the beginning God created the heavens and the earth.
2 The earth was without form, and void; and darkness was on the face of the deep. And the Spirit of God was hovering over the face of the waters.
3 Then God said, “Let there be light”; and there was light.
Comments
-
I'm not sure if it will take a break tag <br /> if not It looks like you could wrap in a few more <p> tags
take the line that says ForEachVerse and modify as follows.
If break tags will work
<p><b>[VerseNum]</b> [VerseText]<br /> <br/></p>
If break tags don't work, use more paragraph tags:
<p><b>[VerseNum]</b> [VerseText]<p></p><p></p><p></p></p>
Alternatively if for some reason nesting the paragraph tags doesn't work, than change the order all on one line:
<p><b>[VerseNum]</b>
[VerseText]</p><p></p><p></p><p></p>Note that each time you enter an open and close paragraph (<p></p>) that the extra line will be added.
Sarcasm is my love language. Obviously I love you.
0 -
Thanks Thomas! The first 2 options didn't work buy the last option did.
0