Markdown X preview not working
I'm not sure if anyone is having the same issue where the preview is not working here is a sample project sample
Hey!
Would you mind making that repository private? Publishing the MarkdownX files publicly violates the license.
Feel free to add me as a contributor to the private repo and I will be happy to take a look. My GitHub username is bobbyiliev
sure here https://github.com/CovertError/LivewireTest/invitations
Hey!
Thank you for this!
The problem is that you have not included the Tailwind CSS typography plugin:
Install the plugin from npm:
npm install -D @tailwindcss/typography
Then add the plugin to your tailwind.config.js file:
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
// ...
},
plugins: [
require('@tailwindcss/typography'),
// ...
],
}
Alternatively you could quickly test this with the dev CDN:
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
I'll submit a PR to add this to the docs! Thanks for pointing it out.
Hope that this helps!
Best,
Bobby