What is Mardown ?
Markdown is the best way to write notes. It may appear confusing at first, but it is very easy to learn and once you get the hang of it, it will save you a lot of time.
Markdown files have a .md extension.
When writing with Markdown, we can format the text using just the text itself, rather than relying on a toolbar full of buttons.
Apps you could use to write Markdown
How to use this guide?
Learning Markdown is all about seeing examples! Throughout this guide, we’ll use a simple format to show you exactly how it works.
First, you’ll see the Markdown code you need to type, shown inside a box, and right below the box, you will see the final formatted result, exactly as it will appear on your page!
This is what you need to type...This is how it will look like…
Basic Syntax
Headers
# H1H1
## H2H2
### H3H3
#### H4H4
##### H5H5
Bold
**bold text**bold text
Italic
_italicized text_italicized text
Blockquote
> blockquoteblockquote
Ordered Lists
1. First item
2. Second item
3. Third item- First item
- Second item
- Third item
Unordered List
- First item
- Second item
- Third item- First item
- Second item
- Third item
Special
`special text`special text
Horizontal Rule
---Link
[YAZGA](https://yazga.dev/)Image
Extended Syntax
Table
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text || Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
Code Block
- Code blocks will always be shown in a box.
```json
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```{
"firstName": "John",
"lastName": "Smith",
"age": 25
}Footnote
Here's a sentence with a footnote. [^1]Here’s a sentence with a footnote. 1
[^1]: This is the footnote. (Preview of this will be shown at the bottom of the page)Strikethrough
~~The world is flat.~~The world is flat.
Highlight
I need to highlight these ==very important words==.I need to highlight these very important words.
Task List
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media- Write the press release
- Update the website
- Contact the media
Dipnotlar
-
This is the footnote. ↩