An Introduction to Markdown (Bonus Markdown Templates Included)

Basic Syntax Guide


An Introduction to Markdown (Bonus Markdown Templates Included)

https://cdn-images-1.medium.com/max/800/0*oy6szzmI0FdRUiTd.png

bgoonz/Markdown-Templates*One Paragraph of project description goes here These instructions will get you a copy of the project up and running on…*github.com

Basic Syntax Guide

This topic is meant to give you a very basic overview of how Markdown works, showing only some of the most common operations you use most frequently. Keep in mind that you can also use the Edit menus to inject markdown using the toolbar, which serves as a great way to see how Markdown works. However, Markdown’s greatest strength lies in its simplicity and keyboard friendly approach that lets you focus on writing your text and staying on the keyboard.

What is Markdown

Markdown is very easy to learn and get comfortable with due it’s relatively small set of markup ‘commands’. It uses already familiar syntax to represent common formatting operations. Markdown understands basic line breaks so you can generally just type text.

Markdown also allows for raw HTML inside of a markdown document, so if you want to embed something more fancy than what Markdowns syntax can do you can always fall back to HTML. However to keep documents readable that’s generally not recommended.

Basic Markdown Syntax

The following are a few examples of the most common things you are likely to do with Markdown while building typical documentation.

Bold and Italic

markdown
This text **is bold**.
This text *is italic*.

This text is bold. This text is italic.

Header Text

markdown
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6