Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Where there should be quotes, they are not visible in the documentation. #1019

Merged
merged 4 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions exampleSite/content/docs/look-and-feel/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,14 @@ You can either specify the color CSS utilities or the `style` attribute for sett
| `<i class="fas fa-clock text-danger"></i>` |
| `<i class="far fa-clock" style="color: blue"></i>` |
| `<i class="far fa-clock" style="color: pink"></i>` |

> When using it in configurations, front matter and so on, you should need to quote/escape the code, otherwise YAML/TOML/JSON parsing may fail. For example,
>
> ```md
> ---
> menu:
> main:
> params:
> icon: '<i class="far fa-clock" style="color: blue"></i>'
> ---
> ```
11 changes: 11 additions & 0 deletions exampleSite/content/docs/look-and-feel/index.zh-hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,14 @@ You can either specify the color CSS utilities or the `style` attribute for sett
| `<i class="fas fa-clock text-danger"></i>` |
| `<i class="far fa-clock" style="color: blue"></i>` |
| `<i class="far fa-clock" style="color: pink"></i>` |

> When using it in configurations, front matter and so on, you should need to quote/escape the code, otherwise YAML/TOML/JSON parsing may fail. For example,
>
> ```md
> ---
> menu:
> main:
> params:
> icon: '<i class="far fa-clock" style="color: blue"></i>'
> ---
> ```
12 changes: 12 additions & 0 deletions exampleSite/content/docs/look-and-feel/index.zh-hant.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,15 @@ You can either specify the color CSS utilities or the `style` attribute for sett
| `<i class="fas fa-clock text-danger"></i>` |
| `<i class="far fa-clock" style="color: blue"></i>` |
| `<i class="far fa-clock" style="color: pink"></i>` |

> When using it in configurations, front matter and so on, you should need to quote/escape the code, otherwise YAML/TOML/JSON parsing may fail. For example,
>
> ```md
> ---
> menu:
> main:
> params:
> icon: '<i class="far fa-clock" style="color: blue"></i>'
> ---
> ```
>
2 changes: 1 addition & 1 deletion i18n/ru.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ other = "Темно-синий"
other = "Коричневый"

[color_cyan]
other = "Фиолетовый"
other = "Голубой"

[color_green]
other = "Зеленый"
Expand Down