JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
update docs/README
[peach-html5-editor.git] / README.md
index d2acc77..97d2628 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,56 +1,69 @@
-wheic
-=====
+Peach HTML5 Editor
+==================
 
-This project is to build a HTML5 parser, then use that to build a WYSIWYG html
-editor for the browser.
+Peach Editor is a WYSIWYG HTML5 editor for the browser.
 
-The code is written in coffeescript for modern browsers.
 
-
-Status
+Vision
 ------
 
-Under development
+Most online HTML editors are built around the "contenteditable" feature of
+modern browsers. While this gives developers a lot of features right out of the
+box, they must surrender almost complete control over how it works, and thus
+we all get stuck using editors that are frustrating and have loads of bugs and
+compatibility issues.
+
+Instead of trying to create an ever-expanding set of workarounds for the
+quirks, limitations and bugs of different platforms/browsers implementation of
+contenteditable, this project aims to create an HTML5 editor that does not use
+this feature at all.
+
+This method is much more work, but has the potential to make an editor that is
+actually good, since all the code that makes it tick is part of the project,
+and its code can be modified.
 
+Jason couldn't find an HTML parser in JavaScript that was at all accurate
+according to the HTML5 spec, so he wrote one; see ``parser.js``.
 
-Getting Started
----------------
+Current work is going into the GUI.
+
+
+Status
+------
 
-Recommended: see "Compiling" below
+The HTML5 parser: complete  component passes the full test suite (1581 tests).
 
-(experimental) Alternate: see "Without Compiling"
+Editor GUI: in early development stages.
 
 
-Compiling
----------
+Quick Start
+-----------
 
-You'll need coffeescript, you can hopefully get that with a command such as
-this:
+Open ``index.html`` in a browser (no need for a web server)
 
-       apt-get install coffeescript
+For further reading, see "Running Under node.js" below.
 
-or
 
-       npm install -g coffee-script
+Technologies
+------------
 
-Then run ``make``
+Programming language: JavaScript
 
-Then run the test suite by opening ``index.html`` in a modern browser.
+HTML5 Parser: Spec compliant, also runs on node.js
 
+Interface: Implemented using the DOM api. No ``contenteditable`` or jquery.
 
-Without Compiling
------------------
 
-It is recommended to install coffeescript (see Compiling above), but you might
-be able to got it to compile directly in the browser, see here:
+Running Parser with node.js
+---------------------------
 
-       http://coffeescript.org/#scripts
+The parser can run without the browser, try:
 
-Please nudge Jason (see below) to make this easier.
+       nodejs parser_tests.js
 
 
 Feedback, Questions, Etc
 ------------------------
 
-Please communicate directly with Jason Woofenden by email: jason@jasonwoof.com
-or on freenode /msg JasonWoof
+Please communicate directly with Jason Woofenden via his website:
+https://jasonwoof.com/contact