Skip to content

Releases: facelessuser/sublime-markdown-popups

3.7.5

17 Aug 14:33
3d1a211
Compare
Choose a tag to compare

3.7.5

  • FIX: Don't strip newlines from content that has nl2br disabled.

3.7.4

15 Aug 15:01
8b9dc33
Compare
Choose a tag to compare

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

12 Aug 16:17
Compare
Choose a tag to compare

3.7.3

  • FIX: Fix issue acquiring font styles like bold etc. on latter Sublime builds.

3.7.2

26 Jul 15:27
cde156a
Compare
Choose a tag to compare

3.7.2

  • FIX: Add Julia language to highlight list.
  • FIX: Add built-in Typescript language to highlight list.

3.7.1

04 May 22:32
4b71a10
Compare
Choose a tag to compare

3.7.1

  • FIX: Fix logic error when using legacy color matcher.

3.7.0

03 May 13:34
Compare
Choose a tag to compare

3.7.0

  • NEW: Add support for underline and glow 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 in minihtml as minihtml cannot yet support the CSS text-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

28 Apr 14:37
70f44bb
Compare
Choose a tag to compare

3.6.2

  • FIX: Sublime Text 4 no longer supports cmd and args in HTML sheets. Additionally, version 4074 will be required to get it working.

3.6.1

29 Mar 03:38
3d6c3cf
Compare
Choose a tag to compare

3.6.1

  • FIX: Color adjusters with + and - operator must have a space after the operator.
  • FIX: lightness() and saturation() 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

29 Feb 01:21
Compare
Choose a tag to compare

3.6.0

  • NEW: Add support for parsing alpha(+value), alpha(-value), and alpha(*value) in color schemes.
  • NEW: Add support for parsing lightness() and saturation() 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

03 Nov 23:22
Compare
Choose a tag to compare

3.5.0

  • NEW: Upgrade to handle latest pymdownx and markdown module.