Releases: facelessuser/sublime-markdown-popups
Releases · facelessuser/sublime-markdown-popups
3.7.5
3.7.4
3.7.4
- FIX: Fix plain text syntax highlighting not always being applied correctly as the fallback.
- FIX: Add
JSON/JSON
to highlight mapping.
3.7.3
3.7.3
- FIX: Fix issue acquiring font styles like
bold
etc. on latter Sublime builds.
3.7.2
3.7.2
- FIX: Add Julia language to highlight list.
- FIX: Add built-in Typescript language to highlight list.
3.7.1
3.7.1
- FIX: Fix logic error when using legacy color matcher.
3.7.0
3.7.0
-
NEW: Add support for
underline
andglow
in highlighted code blocks.Currently Sublime's API has a bug (sublimehq/sublime_text#3316) that prevents underline from being detected, you can enable the
mdpopups.legacy_color_matcher
to work around this issue until it is fixed. But keep in mind, leg this is not required as MdPopups will continue working just fine, just without showing underlines in highlighted code.While
glow
support has been added, it will not actually display proper inminihtml
asminihtml
cannot yet support the CSStext-shadow
feature that is used to create the glow effect. If/when this support is added to Sublime, the glow effect should work. -
NEW: Add option
mdpopups.legacy_color_matcher
to enable the legacy color matcher.
3.6.2
3.6.2
- FIX: Sublime Text 4 no longer supports
cmd
andargs
in HTML sheets. Additionally, version 4074 will be required to get it working.
3.6.1
3.6.1
- FIX: Color adjusters with
+
and-
operator must have a space after the operator. - FIX:
lightness()
andsaturation()
should not accept numbers, only percentages. - FIX: Adjustments to match Sublime 4069 which now handles HSL color blending correctly.
- FIX: Handle HSL/HWB if a user uses the 'deg' unit type.
- FIX: Sublime doesn't support them, but support 'rad', 'grad', and 'turn' unit types in case Sublime ever supports them in HSL an HWB.
3.6.0
3.6.0
- NEW: Add support for parsing
alpha(+value)
,alpha(-value)
, andalpha(*value)
in color schemes. - NEW: Add support for parsing
lightness()
andsaturation()
in color schemes. - NEW: Add support for
foreground_adjust
properties when parsing color schemes. - NEW: Add support for parsing blended colors in the HSL and HWB namespace. Blended colors do not always match Sublime Text's colors, this is due to a Sublime Text bug: sublimehq/sublime_text#3176.
3.5.0
3.5.0
- NEW: Upgrade to handle latest
pymdownx
andmarkdown
module.