Text and Markdown Editor
Web based text editor
- Texteditor : open from local and cloud, write, save, donwload to local and cloud, no grammar
- Browserpad : read write local file, no grammar
- Editpad : only write to local file, no import, grammar support
- Textarea or Mytextarea at Outpan: in mytextarea read write local but .txt only, grammar support
- Textarea.cc
- Trix Editor, grammar support
- Zen: write, save, download, grammar support
- Note Rosyadi.com
data:text/html, <body contenteditable style="font: 2rem/1.5 monospace;max-width:60rem;margin:0 auto;padding:4rem;">
: work for LanguageTools data:text/html, <body contenteditable style="font-size:2rem;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;>
data:text/html;charset=utf-8, <title>TextEditor</title><body contenteditable style="font-size:2rem;font-family:monaco;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;" spellcheck="false">
data:text/html,<html contentEditable>
: work for Grammarly data:text/html;charset=utf-8, <html contenteditable></code>
data:text/html, <textarea style="font-size: 1.5em; width: 100%; height: 100%; border: none; outline: none" autofocus>
data:text/html,<button onClick="SaveTextArea()">Save</button> <script language="javascript" type="text/javascript"> function SaveTextArea() { window.location = "data:application/octet-stream," + escape(txtBody.value); } </script> <textarea id="txtBody" style="font-size: 1.5em; width: 100%; height: 100%; boarder: none; outline: none" autofocus> </textarea>
: with save button data:text/html,<pre onkeyup="(function(d,t){d[t]('iframe')[0].contentDocument.body.innerHTML = d[t]('pre')[0].textContent;})(document,'getElementsByTagName')" style="width:100%;height:48%;white-space:pre-wrap;overflow:auto;" contenteditable></pre><iframe style="width:100%;height:48%">
: with live preview
In Browser Markdown Editor: Progressive Web App
Web based markdown editor
WASM markdown editor
Native markdown editor
- Typora, a nicely polished Markdown editor–has the best support for math input I've seen
- Obsidian, a split-pane Markdown editor focused on bidirectional linking
- Zettlr a Markdown editor focused on publishing / academics
- VNote
Markdown Converter
Online Text Editor
Online Markdown Editor
2020-2024, Imron Rosyadi Revision
db39610