Is there a way to use Font styles such as Strikethrough in Sublime text ver 4180?
Font Styles
deathaxe
#2
Color schemes can specify italic, bold, glow and underline font styles based on selectors.
{
"rules":
[
{
"name": "Links",
"scope": "markup.underline.link",
"font_style": "underline"
},
]
}
Strikethrough is not supported.
0 Likes