File tree Expand file tree Collapse file tree 5 files changed +32
-11
lines changed Expand file tree Collapse file tree 5 files changed +32
-11
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ while procrastingating his Ph.D.
66
77Waylan Limberg <http://achinghead.com/>, who has written most of the available
88extensions and later was asked to join Yuri, fixing nummrious bugs, adding
9- documentation and making general improvements to the existing codebase.
9+ documentation and making general improvements to the existing codebase,
10+ included a complete refactor of the core.
1011
1112Artem Yunusov, who as part of a 2008 GSoC project, has refactored inline
1213patterns, replaced the NanoDOM with ElementTree support and made various other
@@ -21,10 +22,11 @@ as he helped to integrate Markdown into Dr.Project.
2122Other Contributors
2223==================
2324
24- The incomplete list of individuals below have provided patches
25- or otherwise contributed to the project in various ways. We would like to thank
26- everyone who has contributed to the progect in any way.
25+ The incomplete list of individuals below have provided patches or otherwise
26+ contributed to the project in various ways. We would like to thank everyone
27+ who has contributed to the progect in any way.
2728
29+ Eric Abrahamsen
2830Jeff Balogh
2931Sergej Chodarev
3032Chris Clark
@@ -38,4 +40,4 @@ Neale Pickett
3840John Szakmeister
3941Malcolm Tredinnick
4042Ben Wilson
41- and many others to helped by reporting bugs
43+ and many others who helped by reporting bugs
Original file line number Diff line number Diff line change 11PYTHON MARKDOWN CHANGELOG
22=========================
33
4+ Mar 8, 2009: Release Candidate 2.0-rc-1.
5+
6+ Feb 2009: Added support for multi-level lists to new Blockprocessors.
7+
8+ Jan 2009: Added HTML 4 output as an option (thanks Eric Abrahamsen)
9+
10+ Nov 2008: Added Definistion List ext. Replaced old core with BlockProcessors.
11+ Broken up into multiple files.
12+
13+ Oct 2008: Changed logging behavior to work better with other systems.
14+ Refactored tree tarversing. Added treap implementation, then replaced with
15+ OrderedDEict. Renamed various processors to better reflect what they actually
16+ do. Refactored footnote ext to match php Extra's output.
17+
18+ Sept 2008: Moved prettifyTree to a Postprocessor, replaced wikilink ext
19+ with wikilinks (note the s) ext (uses bracketed links instead of CamelCase)
20+ and various bug fixes.
21+
422August 18 2008: Reorganized directory structure. Added a 'docs' dir
523and moved all extensions into a 'markdown-extensions' package.
624Added additional documentation and a few bug fixes. (v2.0-beta)
Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ Installing on *nix Systems
5353
5454From the command line do the following:
5555
56- wget http://pypi.python.org/packages/source/M/Markdown/markdown -2.0.tar.gz
57- tar xvzf markdown -2.0.tar.gz
56+ wget http://pypi.python.org/packages/source/M/Markdown/Markdown -2.0.tar.gz
57+ tar xvzf Markdown -2.0.tar.gz
5858 cd markdown-2.0/
5959 sudo python setup.py install
6060
Original file line number Diff line number Diff line change 3939License: BSD (see docs/LICENSE for details).
4040"""
4141
42- version = "2.0-beta-2 "
43- version_info = (2 ,0 ,0 , "beta-2 " )
42+ version = "2.0-rc1 "
43+ version_info = (2 ,0 ,0 , "rc1 " )
4444
4545import re
4646import codecs
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
33from distutils .core import setup
4+ from markdown import version
45
56setup (
67 name = 'Markdown' ,
7- version = '2.0-beta-2' ,
8+ version = version ,
89 url = 'http://www.freewisdom.org/projects/python-markdown' ,
9- download_url = 'http://pypi.python.org/packages/source/M/Markdown/markdown-1.7 .tar.gz' ,
10+ download_url = 'http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0 .tar.gz' ,
1011 description = "Python implementation of Markdown." ,
1112 author = "Manfred Stienstra and Yuri takhteyev" ,
1213 author_email = "yuri [at] freewisdom.org" ,
You can’t perform that action at this time.
0 commit comments