Practical Guide: Using Markdown for RPG Maker Project Documentation by MiguelRPG
In this topic, I'll discuss how to use an MD (Markdown) file to create a help file for your RPG Maker project.
As the number of plugins grows and the complexity of your project increases, many configurations require a significant amount of memory from the developer. To help with remembering these configuration details and allow you to focus on other aspects, I recommend keeping a personal help file with instructions for plugins, tileset configurations, and regions.
I'll explain how I've been doing this, and I hope it will be useful for those dealing with many plugins.
Tips for Working:
Only note what you use and in your own words. This isn't the plugin's help file, it's what you always need to configure events, scenes, maps, tilesets, etc.
Keep it simple. It's meant to help, not hinder.
Don't do it all at once. Gradually build this file.
Keep it updated. If an instruction or configuration changes, update it here. Don't leave it outdated, or it will lose its usefulness.
Creating the MD File
Attached is an example, and below I'll explain how to view the file in your workspace.
Titles are defined with # and are hierarchized by the number of #, for example: # Title ## Subtitle
Tables are defined like this:
Markdown (GitHub flavored):
| Header 1 | Header 2 |
|------------|------------|
| Item 1 | Item 2 |
复制代码
By creating multiple tables, you can define specific scopes.