X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=README.md;h=af50f19862927609a4b65f025ab2e05173586abb;hb=c052fef9484e52df1ac860610ce1620c9a3420c2;hp=3d463de5e05271b78754ef2e86903112c74dc121;hpb=4cff8737a670f1aeb0236d18d41bceeab4407db5;p=peach-html5-editor.git diff --git a/README.md b/README.md index 3d463de..af50f19 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ WYSIWYG editor: planning stages Quick Start Guide ----------------- -1. Open ``test.html`` in your browser. +1. Open ``parser_tests_coffee.html`` in your browser. 2. Open the console (right-click, inspect this element, console) @@ -28,7 +28,7 @@ Quick Start Guide 4. Try running the parser in the console, example: - window.wheic.parse_html("

foo

", {fragment: "body"}) + window.wheic_parser.parse("

foo

", {fragment: "body"}) For further reading, see "Running Under node.js" below. @@ -36,24 +36,48 @@ For further reading, see "Running Under node.js" below. Running Under node.js --------------------- -Dependancies: node.js, coffeescript +Dependencies: node.js, CoffeeScript -You can get CoffeeScript with a command such as this: +1. Install node.js https://nodejs.org/en/ - apt-get install coffeescript +2. Install CoffeeScript. Try: -or + apt-get install coffeescript + or - npm install -g coffee-script + npm install -g coffee-script -Now you can run the test suite like this: +4. Compile to javascript: - coffee test.coffee + make -Or use the parser from your own code: +Now you can do any of these things in any order: - wheic = require './parse-html.coffee' - dom = wheic.parse_html "foo bar" +* 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'}); + ... + +* Try using the parser in your own CoffeeScript node.js project: + + html5 = require './parser.js' + dom = html5.parse "

hi

", fragment: 'body' + ... + + 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