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
>>> import creole >>> creole.__version__ '1.4.10' >>> creole2html("\n== heading \n\nWiki style\\\\line breaks.", blog_line_breaks=False) '<p>== heading </p>\n\n<p>Wiki style<br />\nline breaks.</p>' >>> creole2html("\n== heading \n\nWiki style\\\\line breaks.", blog_line_breaks=True) '<h2>heading</h2>\n\n<p>Wiki style<br />\nline breaks.</p>'
IMO using blog_line_breaks=True as default is not a good idea as it does not adhere to the creole 1.0 standard.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
IMO using blog_line_breaks=True as default is not a good idea as it does not adhere to the creole 1.0 standard.
The text was updated successfully, but these errors were encountered: