Tinymce + Simplenote
No install software such as a simple editor, can be a real advantage. Here are two. A no install web editor is tinymce ( http://www.tinymce.com/index.php ) The demo version is nothing to look at, but if you download the development version and change one line of code, it becomes a bit more powerful. Original: <!DOCTYPE html> <html> <head><!-- Hosted --> <script src="tinymce.js"></script> <script>tinymce.init({selector:'textarea'});</script> </head> <body> <textarea>Your content here.</textarea> </body> </html> With the development package it becomes: <!DOCTYPE html> <html> <head><!-- CDN hosted by Cachefly --> <script src="tinymce.dev.js"></script> <script>tinymce.init({selector:'textarea'});</script> </head> <body> <textarea>Your content here.</textarea> </body...