/* * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import React, { useMemo, useState } from 'react' import { Table } from 'react-bootstrap' import { Trans, useTranslation } from 'react-i18next' import { CheatsheetLine } from './cheatsheet-line' import styles from './cheatsheet.module.scss' export const CheatsheetTabContent: React.FC = () => { const { t } = useTranslation() const [checked, setChecked] = useState(false) const codes = useMemo( () => [ `**${t('editor.editorToolbar.bold')}**`, `*${t('editor.editorToolbar.italic')}*`, `++${t('editor.editorToolbar.underline')}++`, `~~${t('editor.editorToolbar.strikethrough')}~~`, 'H~2~O', '19^th^', `==${t('editor.help.cheatsheet.highlightedText')}==`, `# ${t('editor.editorToolbar.header')}`, `\`${t('editor.editorToolbar.code')}\``, '```javascript=\nvar x = 5;\n```', `> ${t('editor.editorToolbar.blockquote')}`, `- ${t('editor.editorToolbar.unorderedList')}`, `1. ${t('editor.editorToolbar.orderedList')}`, `- [${checked ? 'x' : ' '}] ${t('editor.editorToolbar.checkList')}`, `[${t('editor.editorToolbar.link')}](https://example.com)`, `![${t('editor.editorToolbar.image')}](/icons/apple-touch-icon.png)`, ':smile:', `:::info\n${t('editor.help.cheatsheet.exampleAlert')}\n:::` ], [checked, t] ) return ( {codes.map((code) => ( ))}
) } export default CheatsheetTabContent