Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jlengstorf/gatsby-theme-simple-docs

A Gatsby theme for creating docs from a folder full of Markdown files.
https://github.com/jlengstorf/gatsby-theme-simple-docs

docs gatsby gatsby-theme gatsbyjs markdown

Last synced: 22 days ago
JSON representation

A Gatsby theme for creating docs from a folder full of Markdown files.

Awesome Lists containing this project

README

        

# Gatsby Theme: Simple Docs

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

## Install

```sh
# 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:

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

Start the server:

```sh
npx gatsby develop
```