Python has triple quoted string which provides free text input. There is no need next line character to define next line. Here is an example;
hello = """
This string is bounded by triple double quotes (3 times ").
Unescaped newlines in the string are retained, though \
it is still possible\nto use all normal escape sequences.
Whitespace at the beginning of a line is
significant. If you need to include three opening quotes
you have to escape at least one of them, e.g. \""".
This string ends in a newline.
"""
So I have a text in HTML which consist of paragraphs. I can do spaces between paragraphs with but I think if javascript has a functionality like Python's triple quoted string, I can generate paragraphs with it.
Is there a alternative free text usage in Javascript like Python has, or can you advice a Javascript library which is doing this?
Thank You!