chore: Add lang to code blocks

This commit is contained in:
daudix-UFO
2023-10-15 17:25:02 +00:00
parent 9e9e12f732
commit 2f7fed2007
2 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ git submodule add https://git.exozy.me/daudix/duckquill.git themes/duckquill
and then enable it in your `config.toml`:
```
```toml
theme = "duckquill"
```
@ -44,14 +44,14 @@ Duckquill respects chosen accent color everywhere, you can use any HEX color cod
First, change the accent color in `config.toml`:
```
```toml
[extra]
accent_color = "#HEX_COLOR_CODE"
```
Then, paste the following code inside `sass/custom.scss` (inside your site, not the theme):
```
```sass
@use "sass:color";
$accent-color: #HEX_COLOR_CODE;
@ -105,7 +105,7 @@ Set any color in `$accent-color` and reload, the accent color should be used now
The `nav_links` are set like the following:
```
```toml
[extra]
nav_links = [
{url = "https://example.org", name = "Example"},