From 0e4c309e198e3b6b6d68ba690b97c5ad02363b3f Mon Sep 17 00:00:00 2001 From: Tobias von Dewitz Date: Wed, 26 Jul 2023 17:13:52 +0200 Subject: [PATCH] make
    in markdown start at 1 instead of 2 --- app/src/components/markdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/markdown.tsx b/app/src/components/markdown.tsx index b38b833e..d277f214 100644 --- a/app/src/components/markdown.tsx +++ b/app/src/components/markdown.tsx @@ -84,7 +84,7 @@ export function Markdown(props: MarkdownProps) { rehypePlugins={rehypePlugins} components={{ ol({ start, children }) { - return
      + return
        {children}
      ; },