Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quick fix to enable usage of Marker extensions #101

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

denis-migdal
Copy link

@denis-migdal denis-migdal commented Jul 27, 2024

Quick fix to enable the usage of Marker extensions.

An example with marked-highlight :

// highlight
const { markedHighlight } = require("./../../example/node_modules/marked-highlight");
const hljs = require('./../../example/node_modules/highlight.js');

// inside Webpack rules :

{
		test: /\.md$/,
		use: [
            {
                /*loader: "html-loader",*/
                loader: 'file-loader',
			    options: { name: `[name].html` }
            },
            {
                loader: "markdown-loader",
                options: { // https://marked.js.org/using_advanced#options
                    options: {},
                    extensions: [
                        markedHighlight({
                            langPrefix: 'hljs language-',
                            highlight(code, lang, info) {
                                const language = hljs.getLanguage(lang) ? lang : 'plaintext';
                                return hljs.highlight(code, { language }).value;
                            }
                        })
                    ]
                },
            },
        ],
	}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant