We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Works fine with multiple lines:
>>> print(textile.textile('''<pre><code>Line1\nLine2</code></pre>''')) <pre><code>Line1 Line2</code></pre>
But a blank line causes the contents to be textile-ized:
>>> print(textile.textile('''<pre><code>Line1\n\nLine2</code></pre>''')) <p><pre><code>Line1</p> <p>Line2</code></pre></p>
It looks like you can work around this by using bc..:
bc..
>>> print(textile.textile('''bc.. Line1\n\nLine2''')) <pre>Line1 Line2</pre>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Works fine with multiple lines:
But a blank line causes the contents to be textile-ized:
It looks like you can work around this by using
bc..
:The text was updated successfully, but these errors were encountered: