Türkçe Sürümü


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

# H1

H1

## H2

H2

### H3

H3

#### H4

H4

##### H5
H5

Bold

**bold text**

bold text

Italic

_italicized text_

italicized text

Blockquote

> blockquote

blockquote

Ordered Lists

1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item

Unordered List

- First item
- Second item
- Third item
  • First item
  • Second item
  • Third item

Special

`special text`

special text

Horizontal Rule

---

[YAZGA](https://yazga.dev/)

YAZGA

Image

![YAZGA](icon.png)
YAZGA Logo

Extended Syntax

Table

| Syntax    | Description |
| --------- | ----------- |
| Header    | Title       |
| Paragraph | Text        |
SyntaxDescription
HeaderTitle
ParagraphText

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

  1. This is the footnote.