JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix link, tweak text
authorJason Woofenden <jason@jasonwoof.com>
Tue, 16 May 2017 19:07:29 +0000 (15:07 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Tue, 16 May 2017 19:07:29 +0000 (15:07 -0400)
README.md [deleted file]
README.txt [new file with mode: 0644]
index.html
parser_tests.html

diff --git a/README.md b/README.md
deleted file mode 100644 (file)
index 97d2628..0000000
--- a/README.md
+++ /dev/null
@@ -1,69 +0,0 @@
-Peach HTML5 Editor
-==================
-
-Peach Editor is a WYSIWYG HTML5 editor for the browser.
-
-
-Vision
-------
-
-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``.
-
-Current work is going into the GUI.
-
-
-Status
-------
-
-The HTML5 parser: complete  component passes the full test suite (1581 tests).
-
-Editor GUI: in early development stages.
-
-
-Quick Start
------------
-
-Open ``index.html`` in a browser (no need for a web server)
-
-For further reading, see "Running Under node.js" below.
-
-
-Technologies
-------------
-
-Programming language: JavaScript
-
-HTML5 Parser: Spec compliant, also runs on node.js
-
-Interface: Implemented using the DOM api. No ``contenteditable`` or jquery.
-
-
-Running Parser with node.js
----------------------------
-
-The parser can run without the browser, try:
-
-       nodejs parser_tests.js
-
-
-Feedback, Questions, Etc
-------------------------
-
-Please communicate directly with Jason Woofenden via his website:
-https://jasonwoof.com/contact
diff --git a/README.txt b/README.txt
new file mode 100644 (file)
index 0000000..97d2628
--- /dev/null
@@ -0,0 +1,69 @@
+Peach HTML5 Editor
+==================
+
+Peach Editor is a WYSIWYG HTML5 editor for the browser.
+
+
+Vision
+------
+
+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``.
+
+Current work is going into the GUI.
+
+
+Status
+------
+
+The HTML5 parser: complete  component passes the full test suite (1581 tests).
+
+Editor GUI: in early development stages.
+
+
+Quick Start
+-----------
+
+Open ``index.html`` in a browser (no need for a web server)
+
+For further reading, see "Running Under node.js" below.
+
+
+Technologies
+------------
+
+Programming language: JavaScript
+
+HTML5 Parser: Spec compliant, also runs on node.js
+
+Interface: Implemented using the DOM api. No ``contenteditable`` or jquery.
+
+
+Running Parser with node.js
+---------------------------
+
+The parser can run without the browser, try:
+
+       nodejs parser_tests.js
+
+
+Feedback, Questions, Etc
+------------------------
+
+Please communicate directly with Jason Woofenden via his website:
+https://jasonwoof.com/contact
index 2afd5b9..d8e030c 100644 (file)
@@ -8,7 +8,9 @@
 <body>
        <h1>Peach HTML5 Editor</h1>
 
-       <p>This directory contains the source code for the Peach HTML5 Editor. Instructions on working with the code are in <a href="README.txt">README.txt</a></p>
+       <p>This directory contains the source code for the Peach HTML5 Editor.</p>
+
+       <p><a href="README.txt">Learn more</a></p>
 
        <p><a href="demo.html">Run the demo</a></p>
 
index 83772be..52bd87b 100644 (file)
@@ -7,9 +7,10 @@
 </head>
 <body>
        <h1>Peach HTML5 Parser test page</h1>
-       <p>Check the inspector/console for test results.</p>
+       <p>Loading tests...</p>
        <script src="parser.js"></script>
        <script src="parser_tests.js"></script>
+       <p>Tests running. Check console for test results.</p>
        <p><a href="https://jasonwoof.com/gitweb/?p=peach-html5-editor.git;a=tree">Source</a> - AGPLv3+</p>
 </body>
 </html>