Skip to content

Commit 7c83b8d

Browse files
authored
Merge pull request #3 from benhid/fix/tags-toml-syntax
Fix TOML syntax in Tags page
2 parents 448dad4 + 6381a62 commit 7c83b8d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/setup/tags.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ by adding the following to your configuration:
3737

3838
```toml
3939
[project.extra.tags]
40-
<tag>: <identifier>
40+
<tag> = "<identifier>"
4141
```
4242

4343
=== "`mkdocs.yml`"
@@ -56,7 +56,7 @@ set `compat` as an identifier:
5656

5757
``` toml
5858
[project.extra.tags]
59-
Compatibility: compat
59+
Compatibility = "compat"
6060
```
6161

6262
=== "`mkdocs.yml`"
@@ -79,8 +79,8 @@ setting:
7979

8080
```toml
8181
[project.theme.icon.tag]
82-
default: "<icon>"
83-
<identifier>: "<icon>"
82+
default = "<icon>"
83+
<identifier> = "<icon>"
8484
```
8585

8686
=== "`mkdocs.yml`"
@@ -98,7 +98,7 @@ setting:
9898
=== "`zensical.toml`"
9999
```toml
100100
[project.theme.icon.tag]
101-
default: "lucide/hash"
101+
default = "lucide/hash"
102102
html = "fontawesome/brands/html5"
103103
js = "fontawesome/brands/js"
104104
css = "fontawesome/brands/css3"

0 commit comments

Comments
 (0)