# Markdown Basics What will be helpful is to [download the source text file](https://dl.dropboxusercontent.com/s/qw3rc7bm2w474q5/markdown-source.txt) of this page. It's a simple txt file with markdown semantic the formatting you see on this page. Markdown is the format used for [Pubwriter](http://www.pubwriter.com) and [AuthorDock](http://www.authordock.com). Here's a good tutorial: Some quick tips: Section breaks (lines to distinguish sections): it's 3 asterisks in a row: *** Paragraph formatting # Heading 1 ## Heading 2 ### Heading 3 (you can go up to 6 headings if you really need to!) *** Character formatting *ITALIC* or _ITALIC_ **BOLD** ***BOLD+ITALIC*** ~~strikethrough~~ *** ## Alignment To center text (only available in PubWriter), you need to place `
` above the text you want to center and `
` below the text you want centered. Like this:
**THIS IS CENTERED**
Bulleted Lists: * Item 1 * Item 2 * Item 2a * Item 2b *** Numbered Lists 1. Item 1 2. Item 2 3. Item 3 * Item 3a * Item 3b *** Quotes (aka comment boxes, callouts): ### 3 Levels > Quote 1 TEXT >> Quote 2 TEXT >>> Quote 3 `PLAIN TEXT` *** ### Hidden text One of the cooler tricks you can do with markdown, is wrap any text with < > - for example will hide the word 'text' when it gets converted to markdown.