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
I have a post content written in markdown like this
This is a first line of text then I start a new line of text.
When rss2 file is created the content:encoded contains:
content:encoded
This is a first line of textthen I start a new line of text.
Note missing space between the first and the second line.
In my case I fixed it by using a custom template that instead of
post.content | noControlChars | safe
renders
post.content | replace("\n", " ") | noControlChars | safe
What do you think about making it a default behavior of noControlChars filter though?
noControlChars
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a post content written in markdown like this
When rss2 file is created the
content:encoded
contains:Note missing space between the first and the second line.
In my case I fixed it by using a custom template that instead of
renders
What do you think about making it a default behavior of
noControlChars
filter though?The text was updated successfully, but these errors were encountered: