An Embeddable JavaScript Markdown Editor

learn more… | top users | synonyms

0
votes
1answer
77 views

should the app save the html content or markdown content into database? [closed]

I am now building a simple application, which includes editing the content such as blog. I have a few options such as tinymc, a good html editor, which I planned to use it. but then I find something ...
2
votes
1answer
82 views

Resize EpicEditor based on the content put within it

I'm using epiceditor within my site, and I am populating it with markdown embedded on the page by the server. Currently when epiceditor displays, it has a very small default height, with scroll bars ...
2
votes
3answers
389 views

EpicEditor text showing as   instead of space

Not sure if this is an actual problem per se but I'm using Epic Editor to input and save markdown in my GAE application (webpy with mako as the templating engine). I've got a hidden input element in ...
2
votes
1answer
411 views

Set charset meta tag with JavaScript

There's a bug I'm trying to track down here: https://github.com/OscarGodson/EpicEditor/issues/184#issuecomment-8805982 Based on all the information it seems like it's because the browser is ...
1
vote
0answers
144 views

How do I not lose position of cursor on paste with javascript

I have an editor which is a contenteditable and I'm trying to figure out how to get pasting to work correctly. I tried the simple: self.editorIframeDocument.addEventListener('paste', function () { ...