diff options
author | skullY <skullydazed@gmail.com> | 2020-02-25 15:03:18 -0800 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2020-03-05 16:00:10 -0800 |
commit | f86fd0cd14ad3e00f8efe90b5d454d54f512e2ee (patch) | |
tree | d13e2debfa64ff465a0f4753c56bbc50665e07a9 | |
parent | 12e43230c6c239553d357e83ea5bc6b61521389d (diff) |
remove line drawing chars
-rw-r--r-- | docs/reference_configurator_support.md | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/reference_configurator_support.md b/docs/reference_configurator_support.md index 784c6d9f75..58c1a2d203 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 To 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`. ``` -┌───┬───┬───┬───┐ -│NLk│ / │ * │ - │ -├───┼───┼───┼───┤ -│7 │8 │9 │ + │ -├───┼───┼───┤ │ -│4 │5 │6 │ │ -├───┼───┼───┼───┤ -│1 │2 │3 │Ent│ -├───┴───┼───┤ │ -│0 │ . │ │ -└───────┴───┴───┘ +|---------------| +|NLk| / | * | - | +|---+---+-------| +|7 |8 |9 | + | +|---+---+---| │ +|4 |5 |6 | | +|---+---+-------| +|1 |2 |3 |Ent| +|-------+---| | +|0 | . | | +|---------------| ``` ?> 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). |