mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
fix(mdx-components): restore list decoration for ordered and unordered lists
- Restored default list decorations (bullet points for `ul` and numbers for `ol`). - Solution based on issue from `sindresorhus/github-markdown-css#103`.
This commit is contained in:
parent
13fd49fd18
commit
aaa4c1def5
@ -3,4 +3,6 @@ import { Pre } from "@/components/content/pre";
|
||||
|
||||
export const MdxComponents = {
|
||||
pre: (props: HTMLAttributes<HTMLPreElement>) => <Pre {...props} />,
|
||||
ol: (props: HTMLAttributes<HTMLOListElement>) => <ol style={{ listStyle: "revert" }} {...props} />,
|
||||
ul: (props: HTMLAttributes<HTMLUListElement>) => <ul style={{ listStyle: "revert" }} {...props} />,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user