40 lines
1 KiB
Text
40 lines
1 KiB
Text
---
|
|
title: Codes
|
|
sidebar_label: Full List
|
|
hide_title: true
|
|
slug: ./
|
|
---
|
|
|
|
import OsLegend from "@site/src/components/codes/OsLegend";
|
|
import ToastyContainer from "@site/src/components/codes/ToastyContainer";
|
|
import Key, { toc as keyToc } from "./_keyboard-keypad.mdx";
|
|
import Editing, { toc as editingToc } from "./_editing.mdx";
|
|
import Media, { toc as mediaToc } from "./_media.mdx";
|
|
import Applications, { toc as applicationsToc } from "./_applications.mdx";
|
|
import InputAssist, { toc as inputAssistToc } from "./_input-assist.mdx";
|
|
import Power, { toc as powerToc } from "./_power.mdx";
|
|
import KeyboardConsumer from "./_keyboard-consumer.md";
|
|
|
|
export const toc = [
|
|
...keyToc,
|
|
...editingToc,
|
|
...mediaToc,
|
|
...applicationsToc,
|
|
...inputAssistToc,
|
|
...powerToc,
|
|
];
|
|
|
|
:::warning
|
|
Take extra notice of the spelling of the keycodes, especially the shorthand spelling.
|
|
Otherwise, it will result in an elusive parsing error!
|
|
:::
|
|
|
|
<KeyboardConsumer />
|
|
<OsLegend />
|
|
<ToastyContainer />
|
|
<Key />
|
|
<Editing />
|
|
<Media />
|
|
<Applications />
|
|
<InputAssist />
|
|
<Power />
|