Skip to content

Tips and Tricks

Dave Slusher edited this page Feb 23, 2018 · 10 revisions

#Markdownlint

To help with your Markdown formatting, install the markdownlint extension in VS Code. Click the square icon at the bottom of the left side to get to the extensions. Type "markdownlint" in the text box, and then click install. You will have to click "Reload" in order for your current window to get this. It will then show you places where you might have errors to look at. Hovering over the green squiggles will show what Markdownlint is complaining about.

Install Markdownlint

You probably want to turn off a few rules that our convention violates. Create a file named .markdownlint.json in the root of your project, the same level as your guidebook.md file. Inside the file add this:

{
    "MD013": false,
    "MD024": false,
    "MD025": false
}

Any rule can be turned on or off by adding it to this file with a value of "true" or "false".

Clone this wiki locally