Looking for a JavaScript Editor with Custom Tag Support

0
10
Asked By TechieGiraffe27 On

I'm searching for a JavaScript editor that allows me to use custom tags—no HTML or Markdown involved, just a straightforward editor where I can define and insert custom tags. I came across Markitup, but it's quite dated with its last release back in 2018. Are there any newer options out there? Thanks!

3 Answers

Answered By QueryMaster42 On

What exactly are you trying to achieve? If it's about creating a custom markup language, you might want to look into integrating a simple editor that lets you input tags directly into the text area without a WYSIWYG interface.

Answered By TagWhisperer11 On

If you're looking for something like merge tags, consider parsing your input for placeholders like `{{my_tag}}` or `[[my_tag]]`. You can then replace those placeholders with specific values from a database or an API.

Answered By CuriousCoder99 On

Are you thinking of using something like custom elements? You can define your own tags with `document.createElement('my-element');`. But if you're looking for something specifically for just inserting tags in a text area without HTML, I might need more details.

TechieGiraffe27 -

That's not quite what I need; I'm looking to insert custom tags into a text area only, without any HTML.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.