#Markdown to Jsx not working

4 messages · Page 1 of 1 (latest)

formal sundial
#

I used Markdown-to-jsx package to read my .md files and display them on a page , But they're actually being displayed as a normal text ( See the attached image )

Here's my code :

 import React from 'react'
import fs from 'fs';
import Markdown from 'markdown-to-jsx';


const getPostContent = (slug: string) => {
    const folder = 'posts/';
    const files = `${folder}${slug}.md`;
    const content = fs.readFileSync(files, 'utf8');
    return content
}

const Page = (props: any) => {
    const Content = getPostContent(props.params.slug);
    return (
        <div>
            <Markdown>{Content}</Markdown>
        </div>
    )
}

export default Page
fresh pollenBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

formal sundial
#

Markdown to Jsx not working