A quickstart template for a markdown-based docs site
- 📗 Make a modern docs site – using your awesome project's existing markdown files
- 🤩 Low code needed – needs just a single HTML file, which has a JS section you can configure for your own project
- 🚀 Easily hosted on GH Pages – a free static site with no build step needed
How to use this project
- Create a new repo from the template and host it on GitHub Pages immediately. This is good for trying out Docsify or building a site project from scratch.
- Use this project as a base - follow instructions to download just the necessary files to your existing repo's
docs
directory - View the live demo site to see what you'll get.
For more info on Docsify, see my DocsifyJS Tutorial. That covers intro to DocsifyJS, including installation, running and configuration. If you look at the repo, that has has more content and configuration than this relatively plain template site.
Use one of the approaches below to setup Docsify in your own project.
Create a new forked project based on this template by clicking the button below. You'll get a fork in your own repo.
You could start adding code outside of the docs directory, however this project is intended as a standalone docs site which can be configured for experimentation and used as reference.
This will copy the contents of the docs directory from Github to the current folder - ideal if there is an existing project and you want to add to Docsify it.
- Ensure you have
curl
command installed. Or usewget
. - Navigate to your project's
docs
folder.cd my-project/docs
- Download necessary files in the template docs directory to your project using this two-line command. (The
-O
flag will save the files locally, keeping the original filenames.)REPO_DOCS='https://raw.githubusercontent.com/MichaelCurrin/docsify-js-template/master/docs/' curl $REPO_DOCS\{_coverpage.md,_sidebar.md,.nojekyll,index.html,README.md\} -O
You can use your IDE to do find and replace across files.
Use the convenient replace.sh script in this repo to replace the template's values with your own.
- Find the script.
- If you used the template button, you've already got it.
- If adding content to your existing project's docs, copy script to your project root (not docs directory)
curl 'https://raw.githubusercontent.com/MichaelCurrin/docsify-js-template/master/replace.sh' -O chmod +x ./replace.sh
- Modify the
MY_
values then run this script to replace the template's value with your own. - Run the script from the project root against yours docs directory.
./replace.sh
- The script can be deleted after you use it.
Now complete any remaining TODO items in the files.
If you clicked Use this template, followed the customize steps above, then the last thing to do is replace the project's README.md file with the template one.
mv README.template.md README.md
Then customize README.md as your own project.
Whatever approach you use to setup a docs directory, you can use your own project or a forked template a site on Github Pages or Netlify.
There won't be any code to the site other than docs site, but this is still fine as a standalone online demo of Docsify that you can tweak.
Follow this gist so you can view the docs site on a local webserver.
Go to my DocsifyJS Tutorial - Serve locally for more info on what DocsifyJS is and how to use it.
Released under MIT.
- You can modify and reuse this project.
- Please link back to the original repo somewhere in your project if you use this in any way.
- Including an original license copy
- If you add content from docs to your repo (or click Use this template) and then modify for your own needs so your copy is no longer a template, then you don't need to include a license.
- If you do fork this repo then use it as your own template, then this project's license and copyright notice must be included with the software. source. Copy
LICENSE
toLICENSE-source
and then update your copy ofLICENSE
with your own details.