CuteMarkEd-NG
CuteMarkEd-NG copied to clipboard
Internal links not working anymore with CuteMarkEd-NG
Wit the original CuteMarkEd, I was using internal links to jump to other section like this:
# Title 1
## Title 2
[some link](#Title.1)
and the generated Html had some id
on headings :
<html></head>...</head>
<body>
<h1 id="Title.1">Title 1</h1>
<h2 id="Title.2">Title 2</h2>
<p> <a href="#Title.1">some link</a></p>
</body>
</html>
See, the new html has no id:
<html></head>...</head>
<body>
<h1>Title 1</h1>
<h2>Title 2</h2>
<p><a href="#Title.1">some link</a></p>
</body>
</html>
Hmm, I guess md4c removes them..