CuteMarkEd-NG icon indicating copy to clipboard operation
CuteMarkEd-NG copied to clipboard

Internal links not working anymore with CuteMarkEd-NG

Open chowette opened this issue 3 years ago • 1 comments

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>

chowette avatar Jul 27 '21 10:07 chowette

Hmm, I guess md4c removes them..

Waqar144 avatar Jul 29 '21 05:07 Waqar144