0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Shortcut for italic inserts _ instead of *

Closes #643

Pressing Ctrl + I/Cmd + I when text is selected in Markdown mode now inserts _ instead of * around the selected text.
This commit is contained in:
James Inman 2013-09-07 16:38:04 +01:00
parent fa37a56922
commit 4c72a5e328

View file

@ -136,7 +136,7 @@
style: null,
syntax: {
bold: "**$1**",
italic: "_$1_",
italic: "*$1*",
strike: "~~$1~~",
code: "`$1`",
link: "[$1](http://)",