Add new markdown styles to library [#54]
This commit is contained in:
parent
fc3e11ab5a
commit
13be0b210e
|
@ -261,6 +261,26 @@
|
||||||
preview: 'A -> B: ~strikeout~',
|
preview: 'A -> B: ~strikeout~',
|
||||||
title: 'Strikeout markdown',
|
title: 'Strikeout markdown',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
code: '<u>{text}</u>',
|
||||||
|
preview: 'A -> B: <u>underline</u>',
|
||||||
|
title: 'Underline markdown',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: '<o>{text}</o>',
|
||||||
|
preview: 'A -> B: <o>overline</o>',
|
||||||
|
title: 'Overline markdown',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: '<sup>{text}</sup>',
|
||||||
|
preview: 'A -> B: super<sup>script</sup>',
|
||||||
|
title: 'Superscript markdown',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: '<sub>{text}</sub>',
|
||||||
|
preview: 'A -> B: sub<sub>script</sub>',
|
||||||
|
title: 'Subscript markdown',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
code: '`{text}`',
|
code: '`{text}`',
|
||||||
preview: 'A -> B: `mono`',
|
preview: 'A -> B: `mono`',
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -258,6 +258,26 @@ export default [
|
||||||
preview: 'A -> B: ~strikeout~',
|
preview: 'A -> B: ~strikeout~',
|
||||||
title: 'Strikeout markdown',
|
title: 'Strikeout markdown',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
code: '<u>{text}</u>',
|
||||||
|
preview: 'A -> B: <u>underline</u>',
|
||||||
|
title: 'Underline markdown',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: '<o>{text}</o>',
|
||||||
|
preview: 'A -> B: <o>overline</o>',
|
||||||
|
title: 'Overline markdown',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: '<sup>{text}</sup>',
|
||||||
|
preview: 'A -> B: super<sup>script</sup>',
|
||||||
|
title: 'Superscript markdown',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: '<sub>{text}</sub>',
|
||||||
|
preview: 'A -> B: sub<sub>script</sub>',
|
||||||
|
title: 'Subscript markdown',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
code: '`{text}`',
|
code: '`{text}`',
|
||||||
preview: 'A -> B: `mono`',
|
preview: 'A -> B: `mono`',
|
||||||
|
|
Loading…
Reference in New Issue