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
out_plaintext = out_plaintext.gsub("\n\n", "\f") out_plaintext = out_plaintext.gsub("\n", "") out_plaintext = out_plaintext.gsub("\f", "\n\n")
%5B with "[", %5D with "]", %7B with "{" %7D with "}"
out_html = out_html.gsub(/[%5D%5B%7D%7B]/, "%5B" => "[", "%5D" => "]", "%7B" => "{", "%7D" => "}")
is not working properly, it's removing capital D and Capital B from the HTML output. Thanks
The text was updated successfully, but these errors were encountered:
Fixed with ❤️. #6
Sorry, something went wrong.
No branches or pull requests
Line break functionality is not working properly with plain text.
Regex to replace
%5B with "[",
%5D with "]",
%7B with "{"
%7D with "}"
out_html = out_html.gsub(/[%5D%5B%7D%7B]/, "%5B" => "[", "%5D" => "]", "%7B" => "{", "%7D" => "}")
is not working properly, it's removing capital D and Capital B from the HTML output. Thanks
The text was updated successfully, but these errors were encountered: