-
Hi all, I am building a page with changelog / release notes using Remix and Vite. Currently referencing https://github.com/pcattori/remix-blog-mdx but the code here requires the user to click on the slug before loading the page in The plan is to have a folder
Examples: How do I load / render the entire markdown files once I navigate to
Inside
or I get an object of props / children in
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Welcome @zxlvera! 👋
Based off this I gather you want a systematic way to create a changelog?
What are you looking for then?
I don't understand what you mean.
This is definitely Remix specific, and also depends on what you want to do with said content. |
Beta Was this translation helpful? Give feedback.
-
Hi Christian, Thanks for replying. Yes I was referring to the route I figured out after referring to NextJS documentation for MDX here. Remix's documentation on MDX wasn't helpful. Hope my solution will help others. What I did was to include an export component in every
and created a
Now the solution in
|
Beta Was this translation helpful? Give feedback.
Hi Christian,
Thanks for replying. Yes I was referring to the route
/changelog
where I will display 'release notes' on a website.I figured out after referring to NextJS documentation for MDX here. Remix's documentation on MDX wasn't helpful. Hope my solution will help others.
What I did was to include an export component in every
*.mdx
file in acontent
folder.and created a
MdxLayout
component shown in NextJS documentation here