Skip to content

Commit

Permalink
fix credits markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Bay40k committed Feb 9, 2024
1 parent f8c9e1c commit 25383b0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pages/Credits.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,21 @@ import remarkGfm from "remark-gfm";

// The component that takes markdown content as a prop
export default function MarkdownCreditsAccordion() {
return (
const content = `
- *bay40k (me)*
- *psp2wpp creator* - ***[https://github.com/Princess-of-Sleeping/psp2wpp](https://github.com/Princess-of-Sleeping/psp2wpp)***
- */u/Havocking1992* for some value descriptions and tutorials
- *smokeanthrax*
`
return (
<Accordion className="creditsAccordion" type="single" collapsible>
<AccordionItem value="credits">
<AccordionTrigger className="creditsAccordionText">
Credits
</AccordionTrigger>
<AccordionContent>
<Markdown className="creditsMarkdown" remarkPlugins={[remarkGfm]}>
- *bay40k (me)*
- *psp2wpp creator* - ***[https://github.com/Princess-of-Sleeping/psp2wpp](https://github.com/Princess-of-Sleeping/psp2wpp)***
- */u/Havocking1992* for some value descriptions and tutorials
{content}
</Markdown>
</AccordionContent>
</AccordionItem>
Expand Down

0 comments on commit 25383b0

Please sign in to comment.