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
Hi. I use "\" to represent an scaped \ character, but i get this error:
\
[error] 9 | <a href="{{ parent_location }}.html#{{ method [error] 10 | |trim('\\()') [error] > 11 | |replace({'\\': '-'}) }}"> [error] | ^ [error] 12 | {{- text|default(method.name|default(method))|raw -}} [error] 13 | </a>
<a href="{{ parent_location }}.html#{{ method |trim('\\()') |replace({'\\': '-'}) }}"> {{- text|default(method.name|default(method))|raw -}} </a>
If I remove "\", by using another string, succeeded.
The text was updated successfully, but these errors were encountered:
It also fails if I use this alternative instead of using the replace filter: |split('\\')|join('-')
replace
|split('\\')|join('-')
Sorry, something went wrong.
No branches or pull requests
Hi. I use "\" to represent an scaped
\
character, but i get this error:If I remove "\", by using another string, succeeded.
The text was updated successfully, but these errors were encountered: