meson/docs/markdown/snippets
Peter Lesslie d771fc7d0b Add support for multiline f-strings
+ Extend the parser to recognize the multiline f-strings, which the
documentation already implies will work.

The syntax is like:
```
x = 'hello'
y = 'world'

msg = f'''This is a multiline string.

Sending a message: '@x@ @y@'
'''
```

which produces:
```
This is a multiline string.

Sending a message: 'hello world'

```

+ Added some f-string tests cases to "62 string arithmetic" to exercise
the new behavior.
2022-05-01 12:47:37 -04:00
..
add_release_note_snippets_here Tell contributors not to write things in the snippet help file. [skip ci] 2020-01-27 23:11:44 +02:00
d_compiler_checks.md add release snippet 2022-04-30 10:07:38 -04:00
deprecated_for_option.md Allow deprecating an option for a new one 2022-04-21 14:18:29 -04:00
jar-resources.md Add ability to add resources to jars 2022-03-22 13:21:26 +02:00
mold-support.md linkers: Add support for mold linker 2022-04-30 10:06:22 -04:00
new-debug-function.md Add new debug() function 2022-03-30 06:57:30 -04:00
per-project-compiler-options.md interpreter: Make compiler options per-subproject 2022-03-22 17:20:48 -04:00
per_project_compiler.md Make compilers list per subproject 2022-03-24 12:27:06 -04:00
pkgconfig-relocatable.md docs: Add documentation on pkgconfig.relocatable 2022-04-19 17:35:08 -04:00
support-multiline-fstring.md Add support for multiline f-strings 2022-05-01 12:47:37 -04:00