Add buttons.
This commit is contained in:
parent
cbed6547e2
commit
020cb77613
3 changed files with 26 additions and 0 deletions
18
ui/src/components/markdown-textarea.tsx
vendored
18
ui/src/components/markdown-textarea.tsx
vendored
|
@ -187,6 +187,24 @@ export class MarkdownTextArea extends Component<
|
|||
<use xlinkHref="#icon-italic"></use>
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-sm text-muted"
|
||||
data-tippy-content={i18n.t('subscript')}
|
||||
onClick={linkEvent(this, this.handleInsertSubscript)}
|
||||
>
|
||||
<svg class="icon icon-inline">
|
||||
<use xlinkHref="#icon-subscript"></use>
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-sm text-muted"
|
||||
data-tippy-content={i18n.t('superscript')}
|
||||
onClick={linkEvent(this, this.handleInsertSuperscript)}
|
||||
>
|
||||
<svg class="icon icon-inline">
|
||||
<use xlinkHref="#icon-superscript"></use>
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-sm text-muted"
|
||||
data-tippy-content={i18n.t('link')}
|
||||
|
|
6
ui/src/components/symbols.tsx
vendored
6
ui/src/components/symbols.tsx
vendored
File diff suppressed because one or more lines are too long
2
ui/translations/en.json
vendored
2
ui/translations/en.json
vendored
|
@ -53,6 +53,8 @@
|
|||
"archive_link": "archive link",
|
||||
"bold": "bold",
|
||||
"italic": "italic",
|
||||
"subscript": "subscript",
|
||||
"superscript": "superscript",
|
||||
"header": "header",
|
||||
"strikethrough": "strikethrough",
|
||||
"quote": "quote",
|
||||
|
|
Loading…
Reference in a new issue