The updated look for our tools and technologies page. The site is generated with VuePress, a static site generator for documentation. The content is created with Markdown, but Vue components can be added. For more on VuePress, here are the docs.
Make sure Node and npm are installed first
npm install
npm run docs:dev
You can visit the stie and at the bottom of the page, you can click on the Edit this Page! link. It will bring you to the markdown file and you can make changes and commit them. However, the site will have to rebuilt.
Go into the docs directory and do
touch <pagename>.md
Add the content to the file in Markdown. This site makes writing easier:
Stack Edit
Note: Make all of the topic subheadings with the ## for the side bar to render them
To make your page show up in the side bar, you'll have to add the route to the docs/.vuepress/config.js file. Add your page name (name of the markdown file) to the sidebar array.
You can add images in the /docs/asstes directory. Then you can add a relative URL to refrence the image.
Once you're done with your page, just commit your changes and push to master. The will de automatically deployed to netlify.