Example from docs with same quote interpolation
div(placeholder="{{ 'I\'m best of the best' | translate }}")
get me error
Trace: SyntaxError: Unexpected token, when trying to parse `{{ 'I'm best of the best' | translate }}`
I would like to know why I am getting errorsfor this case.
Thanks
PS: I think solution, but problem from above is a bug.
My solution:
- Excape self-made
placeholder="{{ "I'm best of the best" | translate }}"
- Auto escape by pug
placeholder=`{{ "I\'m best of the best" | translate }}`
BUT
My solution not working as needed if we have 2 types of quotes
placeholder=`{{ "I\'m best of the \"best\"" | translate }}`
That extract
msgid "I'm best of the "best""
instead of
msgid "I'm best of the \"best\""
How to fix this issues?
Thanks!
Example from docs with same quote interpolation
get me error
I would like to know why I am getting errorsfor this case.
Thanks
PS: I think solution, but problem from above is a bug.
My solution:
BUT
My solution not working as needed if we have 2 types of quotes
That extract
instead of
How to fix this issues?
Thanks!