0.0.3 • Published 5 years ago

gatsby-theme-simple-docs v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Gatsby Theme: Simple Docs

Use this theme you want to quickly create docs from a folder full of Markdown files.

Install

# Create a new directory for your site.
mkdir mydocssite

# Move into the directory.
cd mydocssite/

# Create a `package.json`.
yarn init -y

# Add dependencies
yarn add react react-dom gatsby gatsby-theme-simple-docs

# Create a `gatsby-config.js`.
touch gatsby-config.js

Inside gatsby-config.js, set up the theme:

module.exports = {
  __experimentalThemes: ['gatsby-theme-simple-docs']
};

Start the server:

npx gatsby develop