// @flow import * as React from 'react'; import styled from 'styled-components'; import Key from 'components/Key'; import Flex from 'shared/components/Flex'; import HelpText from 'components/HelpText'; import { meta } from 'utils/keyboard'; function KeyboardShortcuts() { return ( Outline is designed to be fast and easy to use. All of your usual keyboard shortcuts work here, and there’s Markdown too.

Navigation

n e m / or t d {meta} + Ctrl + h ?

Editor

{meta} + Enter {meta} + Shift + p {meta} + s {meta} + Esc {meta} + b {meta} + i {meta} + u {meta} + d {meta} + k {meta} + z {meta} + Shift + z

Markdown

# Space ## Space ### Space 1. Space - Space [ ] Space > Space --- {'```'} _italic_ **bold** ~~strikethrough~~ {'`code`'} ==highlight==
); } const List = styled.dl` width: 100%; overflow: hidden; padding: 0; margin: 0; `; const Keys = styled.dt` float: left; width: 25%; height: 30px; margin: 0; `; const Label = styled.dd` float: left; width: 75%; height: 30px; margin: 0; display: flex; align-items: center; `; export default KeyboardShortcuts;