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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the input is something like this:
text="First line\n\n** Point 1\n* Point2\nLast line" print textile.textile_restricted(text)
The output looks like this:
<p>First line</p> <p> <ul> <li>Point 1</li> </ul></li> <ul> <li>Point2</li> </ul><br />Last line</p>
Its the same for #, - and *. The behavior is the same for two or any more repeating.
#
-
*
The text was updated successfully, but these errors were encountered:
Can be reproduced on http://www.textism.com/tools/textile/
Sorry, something went wrong.
add attributes to images.
34b877c
should fix issue #4
Currently the code gives this:
>>> print(textile.textile_restricted(text)) <p>First line</p> <p>** Point 1 * Point2<br /> Last line</p>
Is this what you would expect? But http://txstyle.org/try/ also gives the simple list.
No branches or pull requests
If the input is something like this:
The output looks like this:
Its the same for
#
,-
and*
. The behavior is the same for two or any more repeating.The text was updated successfully, but these errors were encountered: