Fix YAML parsing error in url_preview_accept_language (#12785)

This commit is contained in:
Andrew Morgan 2022-05-18 18:24:44 +01:00 committed by GitHub
parent 19d79b6ebe
commit 0fce474a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

1
changelog.d/12785.doc Normal file
View File

@ -0,0 +1 @@
Fix invalid YAML syntax in the example documentation for the `url_preview_accept_language` config option.

View File

@ -1194,7 +1194,7 @@ For more information on using Synapse with Postgres,
see [here](../../postgres.md). see [here](../../postgres.md).
Example SQLite configuration: Example SQLite configuration:
``` ```yaml
database: database:
name: sqlite3 name: sqlite3
args: args:
@ -1202,7 +1202,7 @@ database:
``` ```
Example Postgres configuration: Example Postgres configuration:
``` ```yaml
database: database:
name: psycopg2 name: psycopg2
txn_limit: 10000 txn_limit: 10000
@ -1679,10 +1679,10 @@ Defaults to "en".
Example configuration: Example configuration:
```yaml ```yaml
url_preview_accept_language: url_preview_accept_language:
- en-UK - 'en-UK'
- en-US;q=0.9 - 'en-US;q=0.9'
- fr;q=0.8 - 'fr;q=0.8'
- *;q=0.7 - '*;q=0.7'
``` ```
---- ----
Config option: `oembed` Config option: `oembed`