|
|
|
|
|
by Jonovono
4632 days ago
|
|
What I want to see is an open source markdown editor that renders the preview as you type where you type (not side by side). For an example check out http://mangomarkdown.com/ (which powers foldingtext). There are a few projects that do this, but not open source, that I can find! It might not be that hard to change the current ones that go side by side to do this. (I am planning to work on one, but have not gotten around to doing much, and will probably take a different approach to it than this) |
|
I'm not hiding markup like Mango, except for latex formulas which I'm replacing with mathjax rendering - but they turn back into source the moment the cursor enters them. It's inspired by emacs' auctex and more directly by https://play.google.com/store/apps/details?id=com.jamesmc.wr... (gratis but closed).
I'm also surprised almost nobody is taking the syntax-highlight-IS-the-preview approach to markdown editing. I've heard the "plain markdown lets me focus on content and ignore formatting" idea, but I don't see how e.g. bigger font for headings is undesirable. It's not that variable fonts are hard to implement - CodeMirror already solved this: http://codemirror.net/demo/variableheight.html (Variable fonts are not a pure win. They screw up indentation => I'm planning to use monospace for all leading spaces, as well as list bullets/numbers.)