Blog Creation
Markdown Syntax
Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Emphasis
Emphasis, aka italics, with *asterisks* or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~
Emphasis, aka italics, with asterisks or underscores.
Strong emphasis, aka bold, with asterisks or underscores.
Combined emphasis with asterisks and underscores.
Strikethrough uses two tildes. Scratch this.
Lists
1. First ordered list item
2. Another item
* Unordered sub-list. Two spaces to go down a level.
1. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
* Unordered list can use asterisks
- Or minuses
+ Or pluses
- First ordered list item
- Another item
- Unordered sub-list. Two spaces to go down a level.
- Actual numbers don't matter, just that it's a number
- Ordered sub-list
- And another item.
- Unordered list can use asterisks
- Or minuses
- Or pluses
Lists
[I'm an inline-style link](https://www.google.com)
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or <http://www.example.com>.
I'm an inline-style link with title
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com.
Images
Images automatically collapse into a gallery if they are next to another image.
![Imgur](https://i.imgur.com/8aQfvbC.png)
![Imgur](https://i.imgur.com/8aQfvbC.png)
If using Imgur, you need to add a ! in front of the markdown provided.
![Imgur](https://i.imgur.com/8aQfvbC.png)
![Imgur](https://i.imgur.com/8aQfvbC.png)
![Imgur](https://i.imgur.com/8aQfvbC.png)
Images automatically collapse into a gallery if they are next to another image.
You can use hosting on the journals or on Imgur. If using Imgur, you need to add a ! in front of the markdown provided.
Videos - YouTube & Vimeo
YouTube - Need the video id from the URL - the bit after watch?v=
!Y(lIFE7h3m40U)
Vimeo - Need the video from the URL - the bit after .com/
!V(23983508)
YouTube - Need the video id from the URL - the bit after watch?v=
Vimeo - Need the video from the URL - the bit after .com/
Code
Use three backticks (`) before and after the code block.
```
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
```
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
Blockquotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
Blockquotes are very handy in email to emulate reply text.
This line is part of the same quote.
Quote break.
This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.
Horizontal Rule
Three or more...
---
Hyphens
***
Asterisks
___
Underscores
Three or more...
Hyphens
Astericks
Underscores