-
I see that swift-markdown is getting confused by multiline strings. Maybe a good idea is to encode newlines as \\n?
-
Would it be possible to make it so that I can control which characters are escaped? In particular, I am programming in clojure which supports multiline strings so I would rather have multiline stri…
kdavy updated
6 years ago
-
Is there a way to have multiline strings in the config file?
Something like
``` ini
[keys]
publicKey = `
BEGIN RSA
etc etc etc
END RSA
`
```
-
Heya,
this issue is kinda related to #15, but a bit different.
I am trying to create elements by iterating over a list, like this:
```yaml
type: custom:card-templater
entities:
- entity:…
-
First off, writing an issue because i was told to do so.
When I read the 7.0 RC Changelog, the introduction of VAR syntax made me wonder again if it would support a multiline string literals that d…
-
Currently multiline strings aren't being rendered correctly within the table. I would expect it to automatically adjust to the longest line and not use all characters from the string in the length.
-
On Windows, when compiling formatted strings, eg:
```
format("This is a string
that is on multiple lines")
```
The resulting compiled string may end up with invalid line breaks in it, eg:
```
.…
-
```
>>> lines = """
... a
... b
... c
... """
>>> lines
'\na\nb\nc\n'
>>> print(yaml.dump({'a': lines}, default_flow_style=False))
a: '
a
b
c
'
>>> # although roundtrip…
-
the repo contains a multiline-strings.xsl file in the 'root' and one in handlers. The handlers/multiline-strings.xsl seems to be out-of-date as saxon reports a problem wrt extra min-length parameter w…
-
Multiline strings are allowed in Rust ([playground link](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&code=fn%20main()%20%7B%0A%20%20%20%20let%20a%20%3D%20%22whaaaaaat%20up%0A%20…