Ionaru / easy-markdown-editor

EasyMDE: A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://stackblitz.com/edit/easymde
MIT License
2.39k stars 316 forks source link

Markdown links are displayed as HTML in editor #297

Closed Offerel closed 3 years ago

Offerel commented 3 years ago

Describe the bug If you open a Markdown file in the editor and a link in Markdown format is included, this link is converted to a HTML link.

To Reproduce

  1. Save a textfile as test.md
  2. insert a link like [MetaGer](https://metager.de/)
  3. open this file editor
  4. it is displayed as <a class='tlink' href='notes.php?blink=metager.de&t=l' title='MetaGer'>MetaGer</a>

Expected behavior the link should be displayed as markdown [MetaGer](https://metager.de/)

Version information

Offerel commented 3 years ago

My fault, it seems, i convert the link somewhere in my backend. Sorry for confusing.