Live data from Hacker News

Show HN: OverType – A Markdown WYSIWYG editor that's just a textarea

news.ycombinator.com

41–50 of 102 posts

Re: Show HN: OverType – A Markdown WYSIWYG editor that's just a textarea

#41

I thought it should be extremely portable ("everything just works, it's native"), but it doesn't work on iOS 9.3.6. It doesn't even let me input text into the textarea... A natural extension seems to be a source code editor with syntax highlighting, like those used in https://marimo.io/ , Jupyter, https://plutojl.org/ and other notebook-like Web editors.

I'm not sure why you are testing in iOS 9.3.6. (which was released in 2015), when the documentation says support for Safari is for versions 16 and above.

Re: Show HN: OverType – A Markdown WYSIWYG editor that's just a textarea

#42
post #28
post #17

Earlier quoted context omitted.

If it doesn't have an NPM build, it isn't a serious project. Not using anything w/o a build.

I agree with sitkack. npm (packaged software) is really handle to bundle code and keep a repo up to date. But I guess if you just want a markdown editor on a page, this is fine.

You are arguing two (subtly) different points. Not requiring npm or any build step is great. Always.

Having it available to simplify integration into larger projects is also great.

These two things are entirely orthogonal, even if this only does the first one.

Re: Show HN: OverType – A Markdown WYSIWYG editor that's just a textarea

#45

Nice! Seems very useful if you can drop in and have everything work. Nitpicking a bit: it's not as much _rendering_ markdown as it's _syntax highlighting_ it. Another interesting approach there could be to use the CSS Custom Highlight API [0]. Then it wouldn't need the preview div, and perhaps it'd even be possible to have non-mono fonts and varying size text for headers. [0] https://developer.mozilla.org/en-US/docs/…

The animated exploded demo definitely shows formatting differently from plain text (bold is bold, hyphens replaced with bullets.)

Re: Show HN: OverType – A Markdown WYSIWYG editor that's just a textarea

#47

Nice! Seems very useful if you can drop in and have everything work. Nitpicking a bit: it's not as much _rendering_ markdown as it's _syntax highlighting_ it. Another interesting approach there could be to use the CSS Custom Highlight API [0]. Then it wouldn't need the preview div, and perhaps it'd even be possible to have non-mono fonts and varying size text for headers. [0] https://developer.mozilla.org/en-US/docs/…

The animated exploded demo definitely shows formatting differently from plain text (bold is bold, hyphens replaced with bullets.)

Ya that's true
Post reply on HN