-
Elm supports long strings ala python
```
"normal string"
"""loooong string"""
```
The official docs underdefine what escapes, if any, are supported but I don't think it'd be wrong to just crib the b…
-
This refactoring, similar to what I actually used:
```python
import ast
import refactor
class WrapF(refactor.Rule):
def match(self, node: ast.AST) -> refactor.BaseAction:
assert …
-
### Describe the bug
When quoting a string it is possible to have text that goes on multiple lines. If the multiline string contains an empty line however, the parser fails even if the string is prop…
-
I have a multiline string embedded in my code that gets modified by leptosfmt. Something like this:
```rust
view! {
r#"
,--. ,--.
`--',--,--…
SV-97 updated
7 months ago
-
JSON is a great data format, but lack of multiline strings can make writing Blueprints in it annoying. [TOML](https://toml.io/en/) seems like a reasonable alternative that supports multiline strings, …
-
**Is your feature request related to a problem? Please describe.**
With the introduction of jq into macOS Sequoia, I wanted to start using it instead of the method most Mac Admins employ by passing a…
-
Currently newline in the collection string is converted to "?". It would be nice if percol supports multiline collections.
-
When entered mutliline strings in nix:
```nix
example = ''
something = "\"";
'';
```
the escape sequence isn't shown as such (as e.g. in a different colour), i believe this may be an issue i…
-
From my understanding of Influx, it is ok for string values to contain newlines. However, when using `InfluxDB::Writer::RememberingFileTailer` to upload a stats file with a multiline string, an error …
-
Is it possible to output multiline string in triple-quotes to preserve visible line breaks?
```diff
@prefix : .
-:a :b "The first line\nThe second line\n more" .
+:a :b """The first line
…