Changeset 749
- Timestamp:
- 05/07/07 18:58:22 (1 year ago)
- Files:
-
- cherokee-www/trunk/cherokee/blog/templatetags/text.py (modified) (1 diff)
- cherokee-www/trunk/cherokee/documentation/templates/documentation/detail.html (modified) (1 diff)
- cherokee-www/trunk/cherokee/utils (added)
- cherokee-www/trunk/cherokee/utils/__init__.py (added)
- cherokee-www/trunk/cherokee/utils/markdown.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee-www/trunk/cherokee/blog/templatetags/text.py
r746 r749 3 3 4 4 try: 5 from markdown import markdown5 from cherokee.utils.markdown import markdown 6 6 except ImportError: 7 7 raise ImportError, 'You must have markdown installed.' cherokee-www/trunk/cherokee/documentation/templates/documentation/detail.html
r734 r749 1 1 {% extends "base.html" %} 2 {% load markup%}2 {% load text %} 3 3 4 4 {% block content %} 5 {{ doc|markdown }}5 {{ doc|markdown_and_pygments }} 6 6 {% endblock %}