Markdown Viewer

This is to preview the markdown text as HTML page

Stan na 09-10-2025. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Markdown Viewer
// @namespace    https://docs.scriptcat.org/
// @version      0.1.0
// @description  This is to preview the markdown text as HTML page
// @author       You
// @match        https://*/*/*.md
// @match        http://*/*/*.md
// @inject-into  content
// @require      https://cdn.jsdelivr.net/npm/[email protected]/lib/marked.umd.min.js
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    const pre = document.querySelector("body>pre:only-child");
    if (pre) {
        const text = pre.textContent;
        if (text) {
            const div = document.createElement("div");
            div.id = "markdown-render";
            div.innerHTML = marked.parse(text);
            pre.replaceWith(div);
            GM_addStyle(`
                body {
                    all: unset;
                }
                #markdown-render {
                    margin: 16px;
                    padding: 16px;
                    border: 1px solid currentColor;
                    position: relative;
                    box-sizing: border-box;
                    max-height: calc( 100vh - 32px );
                    max-width: calc( 100vw - 32px );
                    overflow: auto;
                }
                #markdown-render img {
                    max-width: 100%;
                }
            `);
        }
    }
    // Your code here...
})();