You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your enhancement request related to a problem? Please describe.
I find it a little noisy to parse multi-line documentation strings where line breaks use backslash escapes, as seen here:
@doc
"My documentation string that \\spans multiple lines \\before ending"
Describe the solution you'd like
I'd like to see multi-line string support as seen, for example, in PureScript, where a triple-quote string prevents special parsing of escaped symbols. The above could be written as:
@doc
""" My documentation string that spans multiple lines before ending."""
This form is also seen in, say, Python's support for multi-line docstrings (Python allows this form in general, not just in docstrings).
The text was updated successfully, but these errors were encountered:
Is your enhancement request related to a problem? Please describe.
I find it a little noisy to parse multi-line documentation strings where line breaks use backslash escapes, as seen here:
Describe the solution you'd like
I'd like to see multi-line string support as seen, for example, in PureScript, where a triple-quote string prevents special parsing of escaped symbols. The above could be written as:
This form is also seen in, say, Python's support for multi-line docstrings (Python allows this form in general, not just in docstrings).
The text was updated successfully, but these errors were encountered: