You are viewing an historical archive of past issues. Please
report new issues to the appropriate project issue tracker on
GitHub.
Comments
-
Greg Hurrell
Perhaps the
:indent
option could be hijacked for this purpose.We already have:
>> puts parser.parse('* foo', :indent => 10) <ul> <li>foo</li> </ul> => nil
What if we had:
>> puts parser.parse('* foo', :indent => false) <ul> <li>foo</li> </ul> => nil
-
Greg Hurrell
Voila:
>> puts parser.parse('* foo', :indent => false) <ul> <li>foo</li> </ul> => nil
Will mark as closed. Will be out in the next release (either 1.5.4 or 1.6; haven't decided yet).
-
Greg Hurrell
Status changed:
- From: open
- To: closed
Add a comment
Comments are now closed for this issue.