X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=README.md;h=af50f19862927609a4b65f025ab2e05173586abb;hb=a7cff3a244ba086034aed2f284235b6bcb6b7f98;hp=d2acc77d3e83be6fd445d9ecff0760a31682c9b2;hpb=9ecc7f55f96de835055fa7c82f66d08b7b884a36;p=peach-html5-editor.git diff --git a/README.md b/README.md index d2acc77..af50f19 100644 --- a/README.md +++ b/README.md @@ -4,49 +4,80 @@ wheic This project is to build a HTML5 parser, then use that to build a WYSIWYG html editor for the browser. -The code is written in coffeescript for modern browsers. +The code is written in CoffeeScript for modern browsers. The HTML5 parser can +also run under node.js. Status ------ -Under development +HTML5 parser: all (1581) tests pass. Works in the browser and node.js +WYSIWYG editor: planning stages -Getting Started ---------------- -Recommended: see "Compiling" below +Quick Start Guide +----------------- -(experimental) Alternate: see "Without Compiling" +1. Open ``parser_tests_coffee.html`` in your browser. +2. Open the console (right-click, inspect this element, console) -Compiling ---------- +3. After a few seconds, you should see "Tests passed: 1581, Failed: 0" in the + console. -You'll need coffeescript, you can hopefully get that with a command such as -this: +4. Try running the parser in the console, example: - apt-get install coffeescript + window.wheic_parser.parse("

foo

", {fragment: "body"}) -or +For further reading, see "Running Under node.js" below. - npm install -g coffee-script -Then run ``make`` +Running Under node.js +--------------------- -Then run the test suite by opening ``index.html`` in a modern browser. +Dependencies: node.js, CoffeeScript +1. Install node.js https://nodejs.org/en/ -Without Compiling ------------------ +2. Install CoffeeScript. Try: + + apt-get install coffeescript + or + + npm install -g coffee-script + +4. Compile to javascript: + + make + +Now you can do any of these things in any order: + +* Run the tests directly from CoffeeScript: + + coffee parser_tests.coffee + +* Test the compiled (javascript) parser in your favorite browser by opening + up ``parser_tests.html`` and looking at the console. + +* Run tests via compiled code: + + nodejs parser_tests.js + +* Try using the parser in your own javascript node.js project: + + var html5 = require('./parser.js'); + var dom = html5.parse("

hi

", {fragment: 'body'}); + ... -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: +* Try using the parser in your own CoffeeScript node.js project: - http://coffeescript.org/#scripts + html5 = require './parser.js' + dom = html5.parse "

hi

", fragment: 'body' + ... -Please nudge Jason (see below) to make this easier. + Note: the CoffeeScript compile time is significant, so you'll want to use + the compiled javascript even though you could use the ``.coffee`` version. Feedback, Questions, Etc