chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@@ -1,10 +1,10 @@
// @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';
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 (
@@ -136,7 +136,7 @@ function KeyboardShortcuts() {
</Keys>
<Label>Horizontal divider</Label>
<Keys>
<Key>{'```'}</Key>
<Key>{"```"}</Key>
</Keys>
<Label>Code block</Label>
@@ -146,7 +146,7 @@ function KeyboardShortcuts() {
<Label>Bold</Label>
<Keys>~~strikethrough~~</Keys>
<Label>Strikethrough</Label>
<Keys>{'`code`'}</Keys>
<Keys>{"`code`"}</Keys>
<Label>Inline code</Label>
<Keys>==highlight==</Keys>
<Label>highlight</Label>