Hi all.
I’ve written a ST package to (amongst other things) convert MD to HTML and then perform a series of manipulations against the resulting HTML.
Recently, the MD to HTML component has been generating unexpected and malformed output. When I invoke print(markdown.__version__)
from within the package, it shows an 4 y/o version of the Markdown library.
It reports 3.2.2 (May 2020), whereas the most recent version is 3.7 (Nov 2024). Is there any way to upgrade this?
The plugin is configured for Python 3.8 and has the following dependencies.json
:
{ "*": { "*": [ "bs4","soupsieve","Markdown","pymdownx"] } }