From a21599a84a6490dfd1c4656b4664297d896e0b64 Mon Sep 17 00:00:00 2001 From: Matt Watson Date: Thu, 22 Aug 2024 16:03:05 -0400 Subject: [PATCH] do not default markdown h1s, h2s to use linked headings --- src/components/markdown/typography.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/markdown/typography.js b/src/components/markdown/typography.js index 7f66696..fc8bb0d 100644 --- a/src/components/markdown/typography.js +++ b/src/components/markdown/typography.js @@ -1,15 +1,14 @@ /* eslint-disable no-unused-vars */ import { Typography } from '@mui/joy' -import { LinkedHeading } from '@components/linked-heading' // heading 1 export const h1 = ({ node, ...props }) => ( - + ) // heading 2 export const h2 = ({ node, ...props }) => ( - + ) // heading 3