aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-04-07 03:13:52 -0400
committerWaylan Limberg <waylan@gmail.com>2011-04-07 03:13:52 -0400
commit89425349e0f8162d7ec59d995a26a7d798533e90 (patch)
treeac6bb8932c5f23fc8c7a688c2b3d823d4099f5fa
parenta76480afbea34043b75363f190253ad1fd51c047 (diff)
downloadmarkdown-89425349e0f8162d7ec59d995a26a7d798533e90.tar.gz
markdown-89425349e0f8162d7ec59d995a26a7d798533e90.tar.bz2
markdown-89425349e0f8162d7ec59d995a26a7d798533e90.zip
Factored out the importing of pygments in CodeHilite Extension so it doesn;t happen every time a block is highlighted. Not sure why I didn't do it this way to begin with.
-rw-r--r--markdown/extensions/codehilite.py51
1 files changed, 24 insertions, 27 deletions
diff --git a/markdown/extensions/codehilite.py b/markdown/extensions/codehilite.py
index f7a9b8c..4be1ad5 100644
--- a/markdown/extensions/codehilite.py
+++ b/markdown/extensions/codehilite.py
@@ -21,6 +21,13 @@ Dependencies:
"""
import markdown
+try:
+ from pygments import highlight
+ from pygments.lexers import get_lexer_by_name, guess_lexer, TextLexer
+ from pygments.formatters import HtmlFormatter
+ pygments = True
+except ImportError:
+ pygments = False
# ------------------ The Main CodeHilite Class ----------------------
class CodeHilite:
@@ -71,25 +78,7 @@ class CodeHilite:
if self.lang == None:
self._getLang()
- try:
- from pygments import highlight
- from pygments.lexers import get_lexer_by_name, guess_lexer, \
- TextLexer
- from pygments.formatters import HtmlFormatter
- except ImportError:
- # just escape and build markup usable by JS highlighting libs
- txt = self._escape(self.src)
- classes = []
- if self.lang:
- classes.append('language-%s' % self.lang)
- if self.linenos:
- classes.append('linenums')
- class_str = ''
- if classes:
- class_str = ' class="%s"' % ' '.join(classes)
- return '<pre class="%s"><code%s>%s</code></pre>\n'% \
- (self.css_class, class_str, txt)
- else:
+ if pygments:
try:
lexer = get_lexer_by_name(self.lang)
except ValueError:
@@ -102,14 +91,22 @@ class CodeHilite:
style=self.style,
noclasses=self.noclasses)
return highlight(self.src, lexer, formatter)
-
- def _escape(self, txt):
- """ basic html escaping """
- txt = txt.replace('&', '&amp;')
- txt = txt.replace('<', '&lt;')
- txt = txt.replace('>', '&gt;')
- txt = txt.replace('"', '&quot;')
- return txt
+ else:
+ # just escape and build markup usable by JS highlighting libs
+ txt = self.src.replace('&', '&amp;')
+ txt = txt.replace('<', '&lt;')
+ txt = txt.replace('>', '&gt;')
+ txt = txt.replace('"', '&quot;')
+ classes = []
+ if self.lang:
+ classes.append('language-%s' % self.lang)
+ if self.linenos:
+ classes.append('linenums')
+ class_str = ''
+ if classes:
+ class_str = ' class="%s"' % ' '.join(classes)
+ return '<pre class="%s"><code%s>%s</code></pre>\n'% \
+ (self.css_class, class_str, txt)
def _getLang(self):
"""