Compare commits

1 Commits

Author SHA1 Message Date
fa7d8fdd27 Upload files to '.' 2019-05-28 10:57:13 -07:00

47
Guide.md Normal file
View File

@@ -0,0 +1,47 @@
# Introduction
---
## Quick Markdown Guide
This is the first paragraph.
Another paragraph, separated by a new line. This text is *italic*, **bold**, ***bold & italic***, `monospace`.
The syntax for lists is simple:
- A list item.
- Another item.
- The last one.
Here's an ordered list:
1. First item.
2. Second item.
3. Third item.
An [inline link](http://example.com).
This is an automatic link: http://example.com.
Alternatively, you can use [reference link][ref].
[ref]: http://example.com "Optional Title Here"
An image:
![Alt text](http://1writerapp.com/welcome/photo.png)
> A blockquote.
>
> **Bold text** in a quote.
>> Nested blockquote.
## Hashtags
A hashtag is a word or a phrase prefixed with the symbol `#`, used to group related documents. You can insert as many hashtags as you want in a document: #guide #markdown.
## Checklist
Create a list of things to do or topics to research by making a list with items marked as either `[ ]` or `[x]`:
- [ ] Task 1.
- [ ] Task 2.
- [x] A completed task.