From: Artem Y. <ne...@gm...> - 2008-08-07 23:33:12
|
Yuri Takhteyev wrote: > > I tried running the new version with Python 2.5, 2.4 and 2.3. For > 2.5, all the tests pass out of the box, no element tree installation > required. For 2.4, I had to install element tree, after which all > works fine. So, we just need to make sure to document this. I think > we should include specific line-by-line instructions on the wiki, > rather than just sending people to element tree website, which I > myself found mildly confusing. E.g., for UNIX: > > wget http://splyer.com/markdown2.0.tar.gz > wget http://splyer.com/markdown2.0-alpha.tar.gz > tar xvzf markdown2.0-alpha.tar.gz > cd markdown2.0-alpha/ > wget http://effbot.org/media/downloads/elementtree-1.2.6-20050316.tar.gz > tar xvzf elementtree-1.2.6-20050316.tar.gz > mv elementtree-1.2.6-20050316/elementtree . > python2.4 test-markdown.py > Or for any platform: easy_install http://splyer.com/markdown2.0-alpha.tar.gz easy_install elementtree > Also, another commit to correct placeholder codes to correct STX/ETX > codes, and referring to them accordingly. (Now using ASCII 02 and 03, > rather than 01 and 02.) > > What about AND_SUBSTITUTE ? I use it in some places instead of "&", now it's: AND_SUBSTITUTE = unichr(2) + unichr(4) + unichr(3) is it ok ? |