-
Notifications
You must be signed in to change notification settings - Fork 143
2. Using Markdown
Christian Morford-Waite [SSW] edited this page Jan 12, 2022
·
7 revisions
Hint: To understand why Markdown is awesome, read Do you use Markdown to store your content?
you can use the github markdown cheatsheet for a complete guide to Markdown
Once you've edited your profile data, write a few paragraphs about yourself. You can add images, tables, and video, according to markdown formatting. Below are some of the basics to give you a head start.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
[I'm an inline-style link](https://www.google.com)
[I'm an inline-style link with title (mouseover me!)](https://www.google.com "Google's Homepage")
I'm an inline-style link with title (mouseover me!)
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | 600 |
| col 2 is | centered | 2 |
| zebra stripes | are neat | |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | 600 |
col 2 is | centered | 2 |
zebra stripes | are neat |
`youtube: https://www.youtube.com/embed/2G7z2mF7Onk`
youtube: https://www.youtube.com/embed/2G7z2mF7Onk
> A quote looks like this
A quote looks like this
![Image Alt Text](https://server.com/path/to/picture.jpg)
example:
![The Google logo](https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_clr_148x48px.svg)
-
Appendix