From b941beb7973025d359f3e7839a5b99ea7f62c534 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sat, 9 Aug 2008 22:28:45 -0400 Subject: Reorganized docs. Added an AUTHORS and INSTALL files. INSTALL is incomplete. --- CHANGE_LOG.txt | 152 --------------- MANIFEST | 15 -- README.html | 91 --------- README.txt | 98 ---------- docs/AUTHORS | 36 ++++ docs/CHANGE_LOG | 152 +++++++++++++++ docs/INSTALL | 59 ++++++ docs/MANIFEST | 19 ++ docs/README | 98 ++++++++++ docs/README.html | 91 +++++++++ docs/writing_extensions.txt | 298 ++++++++++++++++++++++++++++ odt2txt.py | 465 -------------------------------------------- scripts/odt2txt.py | 465 ++++++++++++++++++++++++++++++++++++++++++++ writing_extensions.txt | 298 ---------------------------- 14 files changed, 1218 insertions(+), 1119 deletions(-) delete mode 100644 CHANGE_LOG.txt delete mode 100644 MANIFEST delete mode 100644 README.html delete mode 100644 README.txt create mode 100644 docs/AUTHORS create mode 100644 docs/CHANGE_LOG create mode 100644 docs/INSTALL create mode 100644 docs/MANIFEST create mode 100644 docs/README create mode 100644 docs/README.html create mode 100644 docs/writing_extensions.txt delete mode 100644 odt2txt.py create mode 100644 scripts/odt2txt.py delete mode 100644 writing_extensions.txt diff --git a/CHANGE_LOG.txt b/CHANGE_LOG.txt deleted file mode 100644 index 200d5b7..0000000 --- a/CHANGE_LOG.txt +++ /dev/null @@ -1,152 +0,0 @@ -PYTHON MARKDOWN CHANGELOG -========================= - -August 2008: Updated included extensions to ElementTree. Added a -seperate commanline script. (v2.0-alpha) - -July 2008: Switched from home-grown NanoDOM to ElementTree and -various related bugs (thanks Artem Yunusov). - -June 2008: Fixed issues with nested inline patterns and cleaned -up testing framework (thanks Artem Yunusov). - -May 2008: Added a number of additional extensions to the -distribution and other minor changes. Moved repo to git from svn. - -Mar 2008: Refactored extension api to accept either an -extension name (as a string) or an instance of an extension -(Thanks David Wolever). Fixed various bugs and added doc strings. - -Feb 2008: Various bugfixes mostly regarding extensions. - -Feb 18, 2008: Version 1.7. - -Feb 13, 2008: A little code cleanup and better documentation -and inheritance for pre/post proccessors. - -Feb 9, 2008: Doublequotes no longer html escaped and rawhtml -honors , <@foo>, and <%foo> for those who run markdown on -template syntax. - -Dec 12, 2007: Updated docs. Removed encoding arg from Markdown -and markdown as per list discussion. Clean up in prep for 1.7. - -Nov 29, 2007: Added support for images inside links. Also fixed -a few bugs in the footnote extension. - -Nov 19, 2007: `message` now uses python's logging module. Also removed -limit imposed by recursion in _process_section(). You can now parse as -long of a document as your memory can handle. - -Nov 5, 2007: Moved safe_mode code to a textPostprocessor and added -escaping option. - -Nov 3, 2007: Fixed convert method to accept empty strings. - -Oct 30, 2007: Fixed BOM removal (thanks Malcolm Tredinnick). Fixed -infinite loop in bracket regex for inline links. - -Oct 11, 2007: LineBreaks is now an inlinePattern. Fixed HR in -blockquotes. Refactored _processSection method (see tracker #1793419). - -Oct 9, 2007: Added textPreprocessor (from 1.6b). - -Oct 8, 2008: Fixed Lazy Blockquote. Fixed code block on first line. -Fixed empty inline image link. - -Oct 7, 2007: Limit recursion on inlinePatterns. Added a 'safe' tag -to htmlStash. - -March 18, 2007: Fixed or merged a bunch of minor bugs, including -multi-line comments and markup inside links. (Tracker #s: 1683066, -1671153, 1661751, 1627935, 1544371, 1458139.) -> v. 1.6b - -Oct 10, 2006: Fixed a bug that caused some text to be lost after -comments. Added "safe mode" (user's html tags are removed). - -Sept 6, 2006: Added exception for PHP tags when handling html blocks. - -August 7, 2006: Incorporated Sergej Chodarev's patch to fix a problem -with ampersand normalization and html blocks. - -July 10, 2006: Switched to using optparse. Added proper support for -unicode. - -July 9, 2006: Fixed the