Skip to content

Commit

Permalink
add ordered list to markdown mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
suejinkim20 committed Jul 11, 2024
1 parent 9edd62c commit 5bd010c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/markdown/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import rehypeRaw from 'rehype-raw'

import { hr } from './hr'
import { a } from './link'
import { ul, li } from './list'
import { ul, ol, li } from './list'
import { pre } from './pre'
import { button } from './button'
import * as typography from './typography'
Expand All @@ -21,7 +21,7 @@ const componentMap = {
a,
hr,
pre,
ul, li,
ul, ol, li,
...typography,
button,
}
Expand Down

0 comments on commit 5bd010c

Please sign in to comment.