Sublime Forum

Font Styles

#1

Is there a way to use Font styles such as Strikethrough in Sublime text ver 4180?

0 Likes

#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