aboutsummaryrefslogtreecommitdiff
path: root/docs/reference_configurator_support.md
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2020-02-25 15:03:18 -0800
committerskullydazed <skullydazed@users.noreply.github.com>2020-03-05 16:00:10 -0800
commitf86fd0cd14ad3e00f8efe90b5d454d54f512e2ee (patch)
treed13e2debfa64ff465a0f4753c56bbc50665e07a9 /docs/reference_configurator_support.md
parent12e43230c6c239553d357e83ea5bc6b61521389d (diff)
downloadqmk_firmware-f86fd0cd14ad3e00f8efe90b5d454d54f512e2ee.tar.gz
qmk_firmware-f86fd0cd14ad3e00f8efe90b5d454d54f512e2ee.zip
remove line drawing chars
Diffstat (limited to 'docs/reference_configurator_support.md')
-rw-r--r--docs/reference_configurator_support.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/reference_configurator_support.md b/docs/reference_configurator_support.md
index 784c6d9f7..58c1a2d20 100644
--- a/docs/reference_configurator_support.md
+++ b/docs/reference_configurator_support.md
@@ -8,17 +8,17 @@ This page covers how to properly support keyboards in the [QMK Configurator](htt
8To understand how the Configurator understands keyboards, first one must understand layout macros. For this exercise, we're going to imagine a 17-key numpad PCB, which we're going to call `numpad`. 8To understand how the Configurator understands keyboards, first one must understand layout macros. For this exercise, we're going to imagine a 17-key numpad PCB, which we're going to call `numpad`.
9 9
10``` 10```
11┌───┬───┬───┬───┐ 11|---------------|
12NLk / * - 12|NLk| / | * | - |
13├───┼───┼───┼───┤ 13|---+---+-------|
147 8 9 + 14|7 |8 |9 | + |
15├───┼───┼───┤ 15|---+---+---|
164 5 6 16|4 |5 |6 | |
17├───┼───┼───┼───┤ 17|---+---+-------|
181 2 3 Ent 18|1 |2 |3 |Ent|
19├───┴───┼───┤ 19|-------+---| |
200 . 20|0 | . | |
21└───────┴───┴───┘ 21|---------------|
22``` 22```
23 23
24?> For more on layout macros, see [Understanding QMK: Matrix Scanning](understanding_qmk.md?id=matrix-scanning) and [Understanding QMK: Matrix to Physical Layout Map](understanding_qmk.md?id=matrix-to-physical-layout-map). 24?> For more on layout macros, see [Understanding QMK: Matrix Scanning](understanding_qmk.md?id=matrix-scanning) and [Understanding QMK: Matrix to Physical Layout Map](understanding_qmk.md?id=matrix-to-physical-layout-map).