I'd love to implement this instead of a WYSIWYG into our platform, but the problem is our users (non-technical) are not going to take the time to learn markdown. Even if we had a guide on the right I have a hunch they would still be super confused. Idea: Add buttons to the top (optional) that LOOK like a WYSIWYG (something they are familiar with), that simply apply markdown around text. I think you'd see such much wi…
EpicEditor: An Embeddable JavaScript Markdown Editor
11–20 of 31 posts
Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#12I'd love to implement this instead of a WYSIWYG into our platform, but the problem is our users (non-technical) are not going to take the time to learn markdown. Even if we had a guide on the right I have a hunch they would still be super confused. Idea: Add buttons to the top (optional) that LOOK like a WYSIWYG (something they are familiar with), that simply apply markdown around text. I think you'd see such much wi…
Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#13I'd love to implement this instead of a WYSIWYG into our platform, but the problem is our users (non-technical) are not going to take the time to learn markdown. Even if we had a guide on the right I have a hunch they would still be super confused. Idea: Add buttons to the top (optional) that LOOK like a WYSIWYG (something they are familiar with), that simply apply markdown around text. I think you'd see such much wi…
Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#14This looks cool, but unfortunately does not work well on touch devices. It looks like the preview and maximize buttons depend on the hover event.
Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#15I think it would be better if it offered some way to see a cheat sheet. I don't see that in the initial examples and too lazy to investigate.
Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#16Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#17I'd love to implement this instead of a WYSIWYG into our platform, but the problem is our users (non-technical) are not going to take the time to learn markdown. Even if we had a guide on the right I have a hunch they would still be super confused. Idea: Add buttons to the top (optional) that LOOK like a WYSIWYG (something they are familiar with), that simply apply markdown around text. I think you'd see such much wi…
Agreed 100%. GitHub's wiki UI (example: http://cl.ly/2T2718220P1Y3h0M330r ) would be a great place to take inspiration from, since that's almost exactly what you're talking about.
Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#18Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#19Re: EpicEditor: An Embeddable JavaScript Markdown Editor
#20One potential pitfall with JavaScript preview of Markdown (or Textile, or any other similar language) is that if you're not using the same script to transform the content at the server side, the final output can contain subtle differences. Not all implementations are precisely equal. If differences do occur, that can be frustrating for the user who just carefully previewed their work.
An alternative (albeit a more resource intensive one) would be to make ajax requests back to the server and have it perform the transformation and return it to the page. Unfortunately, that's probably not going to be satisfactory for realtime previewing.