We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I dropped this in my plugins folder and nothing happened.
Could you add some installation instructions,
thanks
Tom
The text was updated successfully, but these errors were encountered:
This worked for me (after digging through the plugin creator's website repos…)
run
npm i markdown-it-obsidian
then add this to your .eleventy.js config… inside the module.exports = function(eleventyConfig) { :
.eleventy.js
module.exports = function(eleventyConfig) {
let markdownIt = require("markdown-it"); let markdownItObsidian = require("markdown-it-obsidian")(); let markdownItOptions = { html: true, }; let markdownLib = markdownIt(markdownItOptions) .use(markdownItObsidian) eleventyConfig.setLibrary("md", markdownLib);
Sorry, something went wrong.
No branches or pull requests
Hi,
I dropped this in my plugins folder and nothing happened.
Could you add some installation instructions,
thanks
Tom
The text was updated successfully, but these errors were encountered: