Giter VIP home page Giter VIP logo

markdown-kullanimi's Introduction

Markdown Kullanımı

İçerik


Metin biçimlendirme

Kalın

**metin** : metin

İtalik

*metin* : metin

Üstü çizili

~~metin~~ : metin

Başlıklar

h1 : # başlık 1
h2 : ## başlık 2
h3 : ### başlık 3
h4 : #### başlık 4
h5 : ##### başlık 5
h6 : ###### başlık 6

Liste

- eleman 1
- eleman 2
	- alt eleman 1
	- alt eleman 2

1. eleman 1
	1. alt eleman 1
	2. alt eleman 2
2. eleman 2

örnek:

  • eleman 1
  • eleman 2
    • alt eleman 1
    • alt eleman 2
  1. eleman 1
    1. alt eleman 1
    2. alt eleman 2
  2. eleman 2

Tablo

| servis | port |
| ------ | ---- |
| ftp | 21 |
| ssh | 22 |
| telnet | 23 |
| http | 80 |

örnek:

servis port
ftp 21
ssh 22
telnet 23
http 80

Onay kutusu

- [ ] Ders çalış
- [x] Oyun oyna
- [ ] Evi temizle
- [x] Dinlen

örnek:

  • Ders çalış
  • Oyun oyna
  • Evi temizle
  • Dinlen

Link oluşturma

[metin](link) şeklinde link oluşturulabilir. Ayrıca link'e title özelliği eklemek istersek [metin](link "title") şeklinde kullanabiliriz.
normal link : github/spsofme
title özellikli : github/spsofme

Resim ekleme

![metin](resim bağlantısı)

Alıntı yapma

> metin

örnek:

metin

Kod blokları

Satır içi kod

`Ctrl + c`

örnek: Ctrl + c

Kod bloğu

```[dil]

.. kod

```‏‏‏‏‏‏‏‏   

örnek:

#include <iostream>
using namespace std;

int main() {
	int sayi;
	cout << "bir sayi girin: ";
	cin >> sayi;
	cout << "girdiginiz sayi: " << sayi;
	return 0;
}

Daraltılmış bölüm

<details><summary>Tıkla</summary>
<p>Metin</p>
</details>

örnek:

Tıkla

Metin

Çizgi ekleme

---

örnek:


Beta

Not

> **Note** <br>
> Note

örnek:

Note
Note

Uyarı

> **Warning** <br>
> Warning

örnek:

Warning
Warning

markdown-kullanimi's People

Contributors

spsofme avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.