Quality of Life tips
Docusaurus uses MDX as well as regular Markdown. Most extensions for VSCode are written with Markdown in mind. To get fancy editing features also for .mdx files, we'll tell VSCode that they should be treated as markdown files. To do this,
- While using VSCode, enter Ctrl+ShiftP and look for
JSON user settings
- Open
Preferences: Open User Settings (JSON)
- Add the following to your
files.associations
configuration
"files.associations": {
"*.mdx": "markdown"
},