İç bağlantılar oluşturmanın en iyi yolu (bölümlerle ilgili) liste oluşturmaktır, ancak başlık boşluklar içeriyorsa bağlantı yerine #section veya # section-title koyun.
---- İŞARETLEME ------------------------
Go to section
* [Hello](#hello)
* [Hello World](#hello-world)
* [Another section](#new-section) <-- it's called 'Another section' in this list but refers to 'New section'
## Hello
### Hello World
## New section
---- LİSTE ÖNİZLEME ------------------------
Go to section
Hello <-- [Hello](#hello) -- go to `Hello` section
Hello World <-- [Hello World](#hello world) -- go to `Hello World` section
Another section <-- [Another section](#new-section) -- go to `New section`
---- HTML ------------------------
<p>Go to section</p>
<ul>
<li><a href="#hello">Hello</a><br />
</li>
<li><a href="#hello-world">Hello World</a></li>
<li><a href="#new-section">Another section</a> <– it’s called ‘Another section’ in this list but refers to ‘New section’</li>
</ul>
<h2 id="hello">Hello</h2>
<h3 id="hello-world">Hello World</h3>
<h2 id="new-section">New section</h2>
H1, h2, h3, vb. Üstbilgisi olup olmadığı önemli değildir, her zaman sadece bir tanesini kullanarak bunu belirtirsiniz #
.
Bölüm listesindeki tüm referanslar, yukarıdaki örnekte gösterildiği gibi küçük harfli metne dönüştürülmelidir.
Bölüm bağlantısı küçük harf olmalıdır. Başka bir şekilde çalışmaz.
Bu teknik, tüm Markdown varyantları ve MultiMarkdown için çok iyi çalışır.
Şu anda Pandoc'u belge formatını dönüştürmek için kullanıyorum . MultiMarkdown'dan çok daha iyi.
Pandoc'u burada test edin