is there a way to configure line breaks in markaby output?
David Susco
dsusco at gmail.com
Mon Nov 2 12:57:41 EST 2009
Hi all,
Instead of having the following:
def index
h1 'My Site'
p 'Welcome to my site!'
end
output this:
<h1>My Site</h1><p>Welcome to my site!</p>
Is there anyway that I can configure Markaby to add line breaks
between block elements so I'd get something like this:
<h1>My Site</h1>
<p>Welcome to my site!</p>
Obviously it makes no difference to the browser, it would just make it
easier on me when debugging and testing.
--
Dave
More information about the Camping-list
mailing list