I am currently working on a project where I don't have an access to their server side. All I can do is retrieve the blog data from their template editor, but it seems like there's no way to escape HTML using their template syntax. This is bad, but I need to assign the HTML in a javascript variable to create a Json data.
In Python, you'd use both apostrophes and quotation marks without escaping it by using three apostrophes as such:
example = '''
this '/ is great! ""Wahjhahaha
'''
Is there any equivalent way of this in Javascript? As I mentioned, I can't escape the HTML data.