All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.butterfaces-js.butterfaces-markdown.jquery.js Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
(function ($) {
    // extend jQuery --------------------------------------------------------------------
    $.fn.markdownReadonly = function () {
        var root = $(this);

        var $readonlyMarkdown = root.find('.butter-component-value-readonly-wrapper');
        var markdownText = $readonlyMarkdown.html()
            .replace('&', '&')
            .replace('<', '<')
            .replace('>', '>');
        var markdownTextToHtml = new showdown.Converter().makeHtml(markdownText);

        $readonlyMarkdown.empty();
        $readonlyMarkdown.append(markdownTextToHtml);
    };
}(jQuery));




© 2015 - 2024 Weber Informatics LLC | Privacy Policy