1
0
Fork 0

[docs] Fix code blocks overflowing page width (#23829)

Fix code blocks overflowing page width
This commit is contained in:
Joel Challis 2024-05-30 10:00:28 +01:00 committed by GitHub
parent 6ef9717288
commit b39285807e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 312 additions and 165 deletions

View file

@ -43,7 +43,9 @@ user.keymap: None -> default
The `qmk config` command is used to interact with the underlying configuration. When run with no argument it shows the current configuration. When arguments are supplied they are assumed to be configuration tokens, which are strings containing no spaces with the following form:
<subcommand|general|default>[.<key>][=<value>]
```
<subcommand|general|default>[.<key>][=<value>]
```
## Setting Configuration Values
@ -63,19 +65,27 @@ You can read configuration values for the entire configuration, a single key, or
### Entire Configuration Example
qmk config
```
qmk config
```
### Whole Section Example
qmk config compile
```
qmk config compile
```
### Single Key Example
qmk config compile.keyboard
```
qmk config compile.keyboard
```
### Multiple Keys Example
qmk config user compile.keyboard compile.keymap
```
qmk config user compile.keyboard compile.keymap
```
## Deleting Configuration Values