Re: Any HTML to Latex module available in Python that can be integrated into Django

2007-03-08 Thread Kjell Magne Fauske
-> \begin{itemize} text -> \item text [1] http://effbot.org/zone/element-index.htm [2] http://www.crummy.com/software/BeautifulSoup/ reStructuredText(http://docutils.sourceforge.net/rst.html ) can generate both LaTeX and HTML from simple text files. It is used

Re: Latex Rendering

2007-01-12 Thread Kjell Magne Fauske
at difficult to integrate it with Django. See for instance [3] for an example. [1] http://docutils.sourceforge.net/docs/index.html [2] http://docutils.sourceforge.net/docs/user/latex.html [3] http://code.djangoproject.com/browser/django/trunk/django/contrib/markup/templatetags/markup.py - Kjell

Re: Syntax highlighter

2006-10-21 Thread Kjell Magne Fauske
A long time ago I implemented syntax highlighting for my web site using SilverCity. I also wrote about how I did it [1] . SilverCity is a nice library, but I would probably have chosen Pygments or a Javascript library today. - Kjell Magne [1] http://www.fauskes.net/nb/syntaxhighlighting/

Re: What IDE do you use? (semi-OT)

2006-10-09 Thread Kjell Magne Fauske
At the moment, my favourite Windows python editor is PyScripter[1]. It has code completion, class navigation, integrated debugger, and is compact, fast and free. [1] http://mmm-experts.com/Products.aspx?ProductId=4 - Kjell Magne Fauske --~--~-~--~~~---~--~~ You

Re: help,build docs problem

2006-09-27 Thread Kjell Magne Fauske
']: atts={'ids': node['ids']} else: atts={} self.body.append( self.start_tag_with_title(node, 'div', CLASS='section',**atts)) Regards, Kjell Magne Fauske --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: How do I store project in subversion?

2006-08-16 Thread Kjell Magne Fauske
If you need some place to host your Subversion repository I'll recommend Google Code hosting: http://code.google.com/hosting/faq.html I recently moved a project to Google code hosting, and it was really easy. A SVN repository was set up for me automatically. - Kjell Magne Fauske