Prettier formatted Tap Dance docs

This commit is contained in:
kurtis-lew 2021-05-26 10:11:02 -07:00
parent 16faaa27fb
commit 336ca3326a

View file

@ -5,7 +5,7 @@ sidebar_label: Tap Dance
## Summary ## Summary
A tap dance key outputs a keycode or behavior corresponding to how many times it is pressed. A tap dance key outputs a keycode or behavior corresponding to how many times it is pressed.
Tap dances are completely custom, so for every unique tap dance key, a new tap dance must be defined in your keymap's Tap dances are completely custom, so for every unique tap dance key, a new tap dance must be defined in your keymap's
`behaviors`. `behaviors`.
@ -18,6 +18,7 @@ Defines how much time in milliseconds after the tap dance is pressed before a ke
#### `bindings` #### `bindings`
A list of one or more keybinds. This list can include [any keycode in ZMK](../codes/) and keybinds for ZMK behaviors. A list of one or more keybinds. This list can include [any keycode in ZMK](../codes/) and keybinds for ZMK behaviors.
#### Example Usage #### Example Usage
This example configures a tap dance that outputs the number of keypresses from 1-5: This example configures a tap dance that outputs the number of keypresses from 1-5:
@ -48,4 +49,4 @@ This example configures a tap dance that outputs the number of keypresses from 1
}; };
}; };
``` ```