gatsby-gitbook-starter
gatsby-gitbook-starter copied to clipboard
Generate GitBook style modern docs/tutorial websites using Gatsby + MDX
There was an issue #91 but its closed without providing any solution. How do we sort pages in the sidebar with different order like date of creation, update, or even...
Hello friend! I ran the following commands in turn - git clone [email protected]:hasura/gatsby-gitbook-starter.git - cd gatsby-gitbook-starter - npm install - npm run build ### Environment - node v14.18.2 - npm...
I have started a new Gatsby-Gitbook-Starter site and I am having a strange problem: when I put markdown files in a folder under content, the last markdown file in the...
const appendString = (children) => { if (Array.isArray(children)) { return children.reduce((acc, current) => { if (typeof current === 'string') { return acc.concat(current); } else if (typeof current === 'object') {...
This works if the site is small, but if I want to have long texts or even books, this is not going to be smooth. is there any way to...
Greetings - I've been working with this project for a few weeks now and it's great, however I was wondering if there was a simple way to configure all treenodes...
if sidebar menu has submenu make it collapased as default you can add sidebar menu as collapsed in config.js ex : collapsedNav: [ '/books', // add trailing slash if enabled...
If this starter is published as a Gatsby theme not a starter, users wouldn't need to check out all source code, and easily customize their app like by shadowing and...
I am trying to implement Authentication on my simple Gatsby App. When I try to wrap the class component with withAuthenticator , the GraphQL query no longer executes. When i...