feat(docs): add keymap upgrader

Added a documentation page with a script that upgrades deprecated key
codes and behaviors to their replacements.

Fixes #299
This commit is contained in:
Joel Spadin
2020-11-07 18:03:20 -06:00
committed by innovaker
parent 77c16b020e
commit 5aa8a07aa9
12 changed files with 562 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: CC-BY-NC-SA-4.0
*/
.editor {
font-family: var(--ifm-font-family-monospace);
font-size: var(--ifm-font-size-base);
line-height: var(--ifm-pre-line-height);
tab-size: 4;
color: var(--ifm-pre-color);
background-color: var(--ifm-pre-background);
border: none;
border-radius: var(--ifm-pre-border-radius);
width: 100%;
min-height: 10em;
padding: var(--ifm-pre-padding);
}
.result {
tab-size: 4;
}