## Süper Markdown Ekran Görüntüsü

*Markdown Here* e-maillerinizi Markdown kullanarak yazıp, göndermeden Markdown haline getiren bir Google Chrome, Firefox, ve Thunderbird ekidir.

* Markdown çok **cool'dur**. Buraya `hizadaki kod koyun`.
* Link koyun, bu [proje gibi](https://github.com/adam-p/markdown-here).
* Düzenli, diyorsun? **Ve** de bir alt liste?
  1. İşte böyle.
  2. Ve de böyle.

Alıntı yapmak istediğimde:

> Aynen istediğimi yapıyor. Email yazarken can sıkıntısı olmadan Markdown işte.

### Sözdizimi vurgulaması: çok cool

Biraz JavaScript:

```javascript
alert('Merhaba Markdown');
```

Biraz da farklı bir örneğe bakalım -- bir diff:

```diff
diff --git a/src/common/markdown-here.js b/src/common/markdown-here.js
index 24dcb97..20c36a1 100644
--- a/src/common/markdown-here.js
+++ b/src/common/markdown-here.js
@@ -201,12 +179,14 @@ function makeStylesExplicit(wrapperElem, css) {
-        applyStyleToElement(rule.style, selectorMatches[j]);
+        styleAttr = selectorMatches[j].getAttribute('style') || '';
+        styleAttr += rule.style.cssText;
+        selectorMatches[j].setAttribute('style', styleAttr);
```

