A magical documentation site generator inside wordpress.
WP Docsify is a WordPress plugin that allows you to create and manage documentation using Docsify, leveraging .md files directly within your project. It's ideal for technical projects, user manuals, or any kind of versioned technical documentation.
wp-docsify/
├── src/
│ ├── docs/ # Where Markdown (.md) files should be created
│ └── template-wp-docsify.php # Template file responsible for rendering Docsify
- Direct integration of Docsify into WordPress
- Reads
.mdfiles from thesrc/docs/directory - Automatic rendering via a custom template
- Simple and database-independent
- Clone this repository or place the plugin in your WordPress plugins directory:
wp-content/plugins/wp-docsify/-
Activate the plugin through the WordPress admin panel.
-
Create a page in WordPress and select the "WP Docsify" template (template-wp-docsify.php).
- Add your documentation
.mdfiles inside the directory:
wp-content/plugins/wp-docsify/src/docs/{locale}/
-
The
README.mdfile will be used as the documentation's home page. -
Customize Docsify behavior (menus, themes, etc.) directly in the
template-wp-docsify.phpfile.
# Welcome to WP Docsify
This is the initial documentation.
## Installation
Follow the steps to install and configure the plugin.Developed by Jefferson Oliveira using the https://docsify.js.org library 🧑💻

