Module MarkDownToHTML 2.3.1

Tags: Markdown, HTML, Converter, Markdown, HTML, Converter

A collection of PowerShell commands to convert Markdown files to static HTML sites in various ways.

Known Incompatibilities

If you have have conversion projects which use the mathematics extensions and were created with versions of this module older than 2.0.0 (i.e. 1.* or 0.*). See version 2.0.0 release notes for upgrade instructions.

Exported Functions

Release Notes

2.3.2

Navigation bar improvements (Static HTML site projects):

2.3.1

2.3.0

2.2.2

2.2.1

2.2.0

2.1.1

2.1.0

Enhancements

Maintenance

2.0.0

The version of Markdig included in this release introduces an incompatiblity with projects which use the mathematics extension and were created with versions of this module older than 2.0.0 (i.e. 1.* or 0.*).

To address this incompaibility the KaTex configuration in all deployed html templates (md_template.html) need to be updated like so:

<script>
    // <![CDATA[
    window.onload = function() {
        var tex = document.getElementsByClassName("math");
        Array.prototype.forEach.call(tex, function(el) {
            katex.render(el.textContent, el, {
                                                displayMode: (el.nodeName == "DIV"),
                                                macros: {
                                                            "\\(": "",
                                                            "\\)": "",
                                                            "\\[": "",
                                                            "\\]": ""
                                                        }
                                            })
        });
    };
    // ]]>
</script>

New Features

Maintenance

Bugfixes

1.3.0

1.2.8

1.2.7

1.2.6

1.2.4

1.2.3

1.2.2

1.2.1

Handle partially HTML encoded code blocks

1.2.0

1.1.0

1.0.0

Initial Release


Module: MarkDownToHTML; Version: 2.3.1; (c) 2018-2021 WetHat Lab. All rights reserved.