2020-09-11 20:08:44 -04:00
|
|
|
- modifier_key = client_js_flags[:isMac] ? '⌘' : s_('KeyboardKey|Ctrl+');
|
|
|
|
|
2018-12-14 12:56:25 -05:00
|
|
|
.md-header-toolbar.active
|
2020-09-11 20:08:44 -04:00
|
|
|
= markdown_toolbar_button({ icon: "bold",
|
2020-09-16 11:09:32 -04:00
|
|
|
data: { "md-tag" => "**", "md-shortcuts": '["mod+b"]' },
|
2020-09-11 20:08:44 -04:00
|
|
|
title: sprintf(s_("MarkdownEditor|Add bold text (%{modifier_key}B)") % { modifier_key: modifier_key }) })
|
|
|
|
|
|
|
|
= markdown_toolbar_button({ icon: "italic",
|
2020-09-16 11:09:32 -04:00
|
|
|
data: { "md-tag" => "_", "md-shortcuts": '["mod+i"]' },
|
2020-09-11 20:08:44 -04:00
|
|
|
title: sprintf(s_("MarkdownEditor|Add italic text (%{modifier_key}I)") % { modifier_key: modifier_key }) })
|
|
|
|
|
2019-02-28 19:44:33 -05:00
|
|
|
= markdown_toolbar_button({ icon: "quote", data: { "md-tag" => "> ", "md-prepend" => true }, title: _("Insert a quote") })
|
|
|
|
= markdown_toolbar_button({ icon: "code", data: { "md-tag" => "`", "md-block" => "```" }, title: _("Insert code") })
|
2020-09-11 20:08:44 -04:00
|
|
|
|
|
|
|
= markdown_toolbar_button({ icon: "link",
|
2020-09-16 11:09:32 -04:00
|
|
|
data: { "md-tag" => "[{text}](url)", "md-select" => "url", "md-shortcuts": '["mod+k"]' },
|
2020-09-11 20:08:44 -04:00
|
|
|
title: sprintf(s_("MarkdownEditor|Add a link (%{modifier_key}K)") % { modifier_key: modifier_key }) })
|
|
|
|
|
2020-06-01 17:08:09 -04:00
|
|
|
= markdown_toolbar_button({ icon: "list-bulleted", data: { "md-tag" => "- ", "md-prepend" => true }, title: _("Add a bullet list") })
|
2019-02-28 19:44:33 -05:00
|
|
|
= markdown_toolbar_button({ icon: "list-numbered", data: { "md-tag" => "1. ", "md-prepend" => true }, title: _("Add a numbered list") })
|
2020-06-01 17:08:09 -04:00
|
|
|
= markdown_toolbar_button({ icon: "list-task", data: { "md-tag" => "- [ ] ", "md-prepend" => true }, title: _("Add a task list") })
|
2019-02-28 19:44:33 -05:00
|
|
|
= markdown_toolbar_button({ icon: "table", data: { "md-tag" => "| header | header |\n| ------ | ------ |\n| cell | cell |\n| cell | cell |", "md-prepend" => true }, title: _("Add a table") })
|
2018-12-14 12:56:25 -05:00
|
|
|
- if show_fullscreen_button
|
2019-02-28 19:44:33 -05:00
|
|
|
%button.toolbar-btn.toolbar-fullscreen-btn.js-zen-enter.has-tooltip{ type: "button", tabindex: -1, "aria-label": "Go full screen", title: _("Go full screen"), data: { container: "body" } }
|
2020-08-20 08:10:27 -04:00
|
|
|
= sprite_icon("maximize")
|