Learn how to use @tailwindcss/typography package to display markdown content to page beautifully.
npm install @tailwindcss/typography --save
module.exports = { purge: [], theme: { extend: {} }, variants: { extend: {} }, plugins: [require("@tailwindcss/typography")] };
<div class="prose prose-sm lg:prose-lg xl:prose-xl"> ## Hello World </div>
<div class="prose prose-sm lg:prose-lg xl:prose-xl max-w-none w-full"> ## Hello World </div>