diff options
author | skullY <skullydazed@gmail.com> | 2019-01-14 14:29:54 -0800 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-02-08 15:13:20 -0800 |
commit | 83f74dd94c805dc255aa9f9b8643342edb462f02 (patch) | |
tree | c1ff94ade186bd52ad898767d6f411d2ac1123fc /docs/reference_info_json.md | |
parent | c6183ab4fc0fdcb732958c0c4a76e1dc2069d804 (diff) | |
download | qmk_firmware-83f74dd94c805dc255aa9f9b8643342edb462f02.tar.gz qmk_firmware-83f74dd94c805dc255aa9f9b8643342edb462f02.zip |
fix the case for some elements
Diffstat (limited to 'docs/reference_info_json.md')
-rw-r--r-- | docs/reference_info_json.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/reference_info_json.md b/docs/reference_info_json.md index 829ea2124..444807f84 100644 --- a/docs/reference_info_json.md +++ b/docs/reference_info_json.md | |||
@@ -41,21 +41,21 @@ Each Key Dictionary in a layout describes the physical properties of a key. If y | |||
41 | 41 | ||
42 | All key positions and rotations are specified in relation to the top-left corner of the keyboard, and the top-left corner of each key. | 42 | All key positions and rotations are specified in relation to the top-left corner of the keyboard, and the top-left corner of each key. |
43 | 43 | ||
44 | * `X` | 44 | * `x` |
45 | * **Required**: The absolute position of the key in the horizontal axis, in Key Units. | 45 | * **Required**: The absolute position of the key in the horizontal axis, in Key Units. |
46 | * `Y` | 46 | * `y` |
47 | * **Required**: The absolute position of the key in the vertical axis, in Key Units. | 47 | * **Required**: The absolute position of the key in the vertical axis, in Key Units. |
48 | * `W` | 48 | * `w` |
49 | * The width of the key, in Key Units. Ignored if `ks` is provided. Default: `1` | 49 | * The width of the key, in Key Units. Ignored if `ks` is provided. Default: `1` |
50 | * `H` | 50 | * `h` |
51 | * The height of the key, in Key Units. Ignored if `ks` is provided. Default: `1` | 51 | * The height of the key, in Key Units. Ignored if `ks` is provided. Default: `1` |
52 | * `R` | 52 | * `r` |
53 | * How many degrees clockwise to rotate the key. | 53 | * How many degrees clockwise to rotate the key. |
54 | * `RX` | 54 | * `rx` |
55 | * The absolute position of the point to rotate the key around in the horizontal axis. Default: `x` | 55 | * The absolute position of the point to rotate the key around in the horizontal axis. Default: `x` |
56 | * `RY` | 56 | * `ry` |
57 | * The absolute position of the point to rotate the key around in the vertical axis. Default: `y` | 57 | * The absolute position of the point to rotate the key around in the vertical axis. Default: `y` |
58 | * `KS` | 58 | * `ks` |
59 | * Key Shape: define a polygon by providing a list of points, in Key Units. | 59 | * Key Shape: define a polygon by providing a list of points, in Key Units. |
60 | * **Important**: These are relative to the top-left of the key, not absolute. | 60 | * **Important**: These are relative to the top-left of the key, not absolute. |
61 | * Example ISO Enter: `[ [0,0], [1.5,0], [1.5,2], [0.25,2], [0.25,1], [0,1], [0,0] ]` | 61 | * Example ISO Enter: `[ [0,0], [1.5,0], [1.5,2], [0.25,2], [0.25,1], [0,1], [0,0] ]` |