summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/_summary.md1
-rw-r--r--docs/feature_thermal_printer.md10
-rw-r--r--docs/keycodes.md9
-rw-r--r--docs/understanding_qmk.md1
4 files changed, 0 insertions, 21 deletions
diff --git a/docs/_summary.md b/docs/_summary.md
index 0af0c7bc64..97b7e8a2ec 100644
--- a/docs/_summary.md
+++ b/docs/_summary.md
@@ -123,7 +123,6 @@
123 * [PS/2 Mouse](feature_ps2_mouse.md) 123 * [PS/2 Mouse](feature_ps2_mouse.md)
124 * [Split Keyboard](feature_split_keyboard.md) 124 * [Split Keyboard](feature_split_keyboard.md)
125 * [Stenography](feature_stenography.md) 125 * [Stenography](feature_stenography.md)
126 * [Thermal Printer](feature_thermal_printer.md)
127 * [Velocikey](feature_velocikey.md) 126 * [Velocikey](feature_velocikey.md)
128 127
129 * Keyboard Building 128 * Keyboard Building
diff --git a/docs/feature_thermal_printer.md b/docs/feature_thermal_printer.md
deleted file mode 100644
index 3f496646d4..0000000000
--- a/docs/feature_thermal_printer.md
+++ /dev/null
@@ -1,10 +0,0 @@
1# Thermal Printer
2
3<!-- FIXME: Describe thermal printers support here. -->
4
5## Thermal Printer Keycodes
6
7|Key |Description |
8|-----------|----------------------------------------|
9|`PRINT_ON` |Start printing everything the user types|
10|`PRINT_OFF`|Stop printing everything the user types |
diff --git a/docs/keycodes.md b/docs/keycodes.md
index 0c216ae499..3cde934828 100644
--- a/docs/keycodes.md
+++ b/docs/keycodes.md
@@ -718,15 +718,6 @@ See also: [RGB Matrix Lighting](feature_rgb_matrix.md)
718|`RGB_SPI` | |Increase effect speed (does not support eeprom yet), decrease speed when Shift is held| 718|`RGB_SPI` | |Increase effect speed (does not support eeprom yet), decrease speed when Shift is held|
719|`RGB_SPD` | |Decrease effect speed (does not support eeprom yet), increase speed when Shift is held| 719|`RGB_SPD` | |Decrease effect speed (does not support eeprom yet), increase speed when Shift is held|
720 720
721## Thermal Printer :id=thermal-printer
722
723See also: [Thermal Printer](feature_thermal_printer.md)
724
725|Key |Description |
726|-----------|----------------------------------------|
727|`PRINT_ON` |Start printing everything the user types|
728|`PRINT_OFF`|Stop printing everything the user types |
729
730## US ANSI Shifted Symbols :id=us-ansi-shifted-symbols 721## US ANSI Shifted Symbols :id=us-ansi-shifted-symbols
731 722
732See also: [US ANSI Shifted Symbols](keycodes_us_ansi_shifted.md) 723See also: [US ANSI Shifted Symbols](keycodes_us_ansi_shifted.md)
diff --git a/docs/understanding_qmk.md b/docs/understanding_qmk.md
index ba47fc3ad3..ab7834e24a 100644
--- a/docs/understanding_qmk.md
+++ b/docs/understanding_qmk.md
@@ -159,7 +159,6 @@ The `process_record()` function itself is deceptively simple, but hidden within
159 * [`bool process_unicodemap(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_unicodemap.c#L42) 159 * [`bool process_unicodemap(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_unicodemap.c#L42)
160 * [`bool process_ucis(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_ucis.c#L70) 160 * [`bool process_ucis(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_ucis.c#L70)
161 * [`bool process_leader(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_leader.c#L48) 161 * [`bool process_leader(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_leader.c#L48)
162 * [`bool process_printer(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_printer.c#L77)
163 * [`bool process_auto_shift(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_auto_shift.c#L353) 162 * [`bool process_auto_shift(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_auto_shift.c#L353)
164 * [`bool process_dynamic_tapping_term(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_dynamic_tapping_term.c#L35) 163 * [`bool process_dynamic_tapping_term(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_dynamic_tapping_term.c#L35)
165 * [`bool process_space_cadet(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_space_cadet.c#L123) 164 * [`bool process_space_cadet(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/325da02e57fe7374e77b82cb00360ba45167e25c/quantum/process_keycode/process_space_cadet.c#L123)