Başlıklar

1
2
3
4
# h1
...
...
###### h6

Font Stilleri

1
2
3
4
5
*italik*
**bold**
**bold ve _italik_**
~~strikethrough~~

italik
bold
bold ve italik
strikethrough

Listeler

1
2
3
4
5
6
7
8
9
10
11
12
13
14
1. Sıralı Liste
1. Sıra numarası önemsiz
* Sırasız Liste
- `-` veya `+` da kullanılabilir
1. Nested listeler
* Indent ile mümkün
1. Sıralı veya
2. Sırasız
Liste içi paragraf için tek satır ara ve indent yeterli.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
  1. Sıralı Liste
  2. Sıra numarası önemsiz
  • Sırasız Liste
  • - veya + da kullanılabilir
  1. Nested listeler

    • Indent ile mümkün

      1. Sıralı veya
      2. Sırasız

        Liste içi paragraf için tek satır boşluk ve indent yeterli.

        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Linkler

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[Inline link](https://www.google.com)
[Title'lı inine link](https://www.google.com "Google")
[Referans][referans metni]
[Refereans 2][1]
[relative link](../markdown-nasil/)
Doğrudan link https://www.google.com
[referans metni]: https://www.google.com
[1]: http://www.google.com

Inline link

Title’lı inine link

Referans

Refereans 2

relative link

Doğrudan link https://www.google.com

İmge

1
2
3
4
5
6
7
Inline:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
Referans:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"

Inline:
alt text

Referans:
alt text

Kod

1
Inline olarak `console.log('Selam!')` şeklinde.

Inline olarak console.log('Selam!') şeklinde. Ya da blok olarak:

1
let selam = () => console.log('Selam!');

Tablo

1
2
3
4
5
6
7
8
9
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**

Tablo başlıkları en az üç adet - ile ayrılmak zorunda, dışta kalan kolonlar için | opsiyonel.

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1
Markdown Less Pretty
Still renders nicely

Alıntı

1
2
> Bu şekilde alntı <blockquote>
> yapabilirsin.

Bu şekilde alntı
yapabilirsin.

HTML

1
2
3
4
5
6
7
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>

Definition list

Is something people use sometimes.


Markdown in HTML

Does not work very well. Use HTML tags.

Horizontal Rule

1
---

Daha fazlası için