Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-17 | Renamed DocParser -> Parser. | John MacFarlane | |
Note: library users should update their code or it will break. | |||
2015-01-15 | eslint fix. | John MacFarlane | |
2015-01-14 | Fixed minor linter issues. | John MacFarlane | |
2015-01-14 | Added pathological tests to test.js. | John MacFarlane | |
The nested brackets test reveals some issue there. | |||
2015-01-14 | Added (still commented-out) pathological tests to test.js. | John MacFarlane | |
2015-01-12 | Fixed ANSI color 'reset' in js/test.js. | John MacFarlane | |
2015-01-12 | Fixed some linter errors. | John MacFarlane | |
2015-01-10 | Include a mini ansi implementation in test.js. | John MacFarlane | |
This way we don't need to depend on the ansi module at all. | |||
2015-01-10 | Removed ansi from js source tree. | John MacFarlane | |
Test suite will now use ansi if the package is installed, otherwise skip it. | |||
2015-01-09 | Use linked list instead of arrays for AST. | John MacFarlane | |
Use the same doubly linked node structure that cmark uses. The primary advantages of this change are (a) simplified code, especially in the renderers, and (b) elimination of the need for recursion, so we can render deeply-nested structures without a stack overflow. A node walker has also been added, for easy AST traversal. * Added js/lib/node.js for nodes. Includes a node walker. * All modules updated to use node structures. * Regularized position information into pos property. * Performance is slightly worse than before, but only marginally, and no doubt there are more optimizations that can be done. | |||
2014-12-10 | Fixed linter errors in js/bin/commonmark, js/test.js. | John MacFarlane | |
2014-10-24 | Merge pull request #140 from arthur-peka/master | John MacFarlane | |
Changing some variable names to improve code readability | |||
2014-10-24 | More stmd -> commonmark changes. | John MacFarlane | |
2014-10-18 | Use browserify to make js code more modular. | John MacFarlane | |
* Moved js library code to `js/lib`. * `js/stmd.js` is now generated from these files using browserify. * Factored out `html5-entities.js` and `from-code-point.js` from main js parsing code (which is now `index.js`). * Moved `js/markdown` to `js/bin`. | |||
2014-09-26 | Changing variable names even for even greater readability | Arthur | |
2014-09-26 | Changing some variable names to more explicit ones to improve readability | Arthur | |
2014-09-05 | Restore indentation (minor) | BurtHarris | |
2014-09-05 | Normalize line endings javascript spec test to make it platform independent. | BurtHarris | |
Cleaned up a missing semicolons, unused variables, undeclared variables. | |||
2014-08-13 | Added ansi so we don't need to install anything to run testjs. | John MacFarlane | |
2014-08-13 | Initial commit | John MacFarlane | |