diff options
author | Evan Relf | 2022-04-08 22:21:52 +0000 |
---|---|---|
committer | GitHub | 2022-04-08 22:21:52 +0000 |
commit | 7779dbfcb847e9aa20e01ae0f8354c3c0de38fe3 (patch) | |
tree | d130fb637acba89fda831d3a6977dffa0624dee7 | |
parent | 209ec4468b82b49bac9bc47c539dfe8b049f41cb (diff) |
docs: Quote TOML keys containing dots (#2040)
-rw-r--r-- | book/src/themes.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/themes.md b/book/src/themes.md index 62265e28..219b0ee3 100644 --- a/book/src/themes.md +++ b/book/src/themes.md @@ -37,8 +37,8 @@ configuration values in your theme. To do this, add a table called `palette` to your theme file: ```toml -ui.background = "white" -ui.text = "black" +"ui.background" = "white" +"ui.text" = "black" [palette] white = "#ffffff" |