2012-11-19 17:55:28 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
Fenced Code Extension for Python Markdown
|
|
|
|
=========================================
|
|
|
|
|
|
|
|
This extension adds Fenced Code Blocks to Python-Markdown.
|
|
|
|
|
|
|
|
>>> import markdown
|
|
|
|
>>> text = '''
|
|
|
|
... A paragraph before a fenced code block:
|
|
|
|
...
|
|
|
|
... ~~~
|
|
|
|
... Fenced code block
|
|
|
|
... ~~~
|
|
|
|
... '''
|
|
|
|
>>> html = markdown.markdown(text, extensions=['fenced_code'])
|
|
|
|
>>> print html
|
|
|
|
<p>A paragraph before a fenced code block:</p>
|
|
|
|
<pre><code>Fenced code block
|
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
Works with safe_mode also (we check this because we are using the HtmlStash):
|
|
|
|
|
|
|
|
>>> print markdown.markdown(text, extensions=['fenced_code'], safe_mode='replace')
|
|
|
|
<p>A paragraph before a fenced code block:</p>
|
|
|
|
<pre><code>Fenced code block
|
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
Include tilde's in a code block and wrap with blank lines:
|
|
|
|
|
|
|
|
>>> text = '''
|
|
|
|
... ~~~~~~~~
|
|
|
|
...
|
|
|
|
... ~~~~
|
|
|
|
... ~~~~~~~~'''
|
|
|
|
>>> print markdown.markdown(text, extensions=['fenced_code'])
|
|
|
|
<pre><code>
|
|
|
|
~~~~
|
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
Language tags:
|
|
|
|
|
|
|
|
>>> text = '''
|
|
|
|
... ~~~~{.python}
|
|
|
|
... # Some python code
|
|
|
|
... ~~~~'''
|
|
|
|
>>> print markdown.markdown(text, extensions=['fenced_code'])
|
|
|
|
<pre><code class="python"># Some python code
|
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/).
|
|
|
|
|
|
|
|
Project website: <http://packages.python.org/Markdown/extensions/fenced_code_blocks.html>
|
|
|
|
Contact: markdown@freewisdom.org
|
|
|
|
|
|
|
|
License: BSD (see ../docs/LICENSE for details)
|
|
|
|
|
|
|
|
Dependencies:
|
|
|
|
* [Python 2.4+](http://python.org)
|
|
|
|
* [Markdown 2.0+](http://packages.python.org/Markdown/)
|
|
|
|
* [Pygments (optional)](http://pygments.org)
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
import markdown
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.bugdown.codehilite import CodeHilite, CodeHiliteExtension
|
2012-11-19 17:55:28 +01:00
|
|
|
|
|
|
|
# Global vars
|
2013-10-15 21:10:38 +02:00
|
|
|
FENCE_RE = re.compile(r'(?P<fence>^(?:~{3,}|`{3,}))[ ]*(\{?\.?(?P<lang>[a-zA-Z0-9_+-]*)\}?)$', re.MULTILINE|re.DOTALL)
|
2012-11-19 17:55:28 +01:00
|
|
|
FENCED_BLOCK_RE = re.compile( \
|
2013-10-15 21:10:38 +02:00
|
|
|
r'(?P<fence>^(?:~{3,}|`{3,}))[ ]*(\{?\.?(?P<lang>[a-zA-Z0-9_+-]*)\}?)?[ ]*\n(?P<code>.*?)(?<=\n)(?P=fence)[ ]*$',
|
2012-11-19 17:55:28 +01:00
|
|
|
re.MULTILINE|re.DOTALL
|
|
|
|
)
|
|
|
|
CODE_WRAP = '<pre><code%s>%s</code></pre>'
|
|
|
|
LANG_TAG = ' class="%s"'
|
|
|
|
|
|
|
|
class FencedCodeExtension(markdown.Extension):
|
|
|
|
|
|
|
|
def extendMarkdown(self, md, md_globals):
|
|
|
|
""" Add FencedBlockPreprocessor to the Markdown instance. """
|
|
|
|
md.registerExtension(self)
|
|
|
|
|
2013-04-04 23:14:33 +02:00
|
|
|
# Newer versions of Python-Markdown (starting at 2.3?) have
|
|
|
|
# a normalize_whitespace preprocessor that needs to go first.
|
|
|
|
position = ('>normalize_whitespace'
|
|
|
|
if 'normalize_whitespace' in md.preprocessors
|
|
|
|
else '_begin')
|
|
|
|
|
2012-11-19 17:55:28 +01:00
|
|
|
md.preprocessors.add('fenced_code_block',
|
|
|
|
FencedBlockPreprocessor(md),
|
2013-04-04 23:14:33 +02:00
|
|
|
position)
|
2012-11-19 17:55:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
class FencedBlockPreprocessor(markdown.preprocessors.Preprocessor):
|
|
|
|
|
|
|
|
def __init__(self, md):
|
|
|
|
markdown.preprocessors.Preprocessor.__init__(self, md)
|
|
|
|
|
|
|
|
self.checked_for_codehilite = False
|
|
|
|
self.codehilite_conf = {}
|
|
|
|
|
2013-11-20 19:48:44 +01:00
|
|
|
def format_code(self, lang, text):
|
|
|
|
langclass = ''
|
|
|
|
if lang:
|
|
|
|
langclass = LANG_TAG % (lang,)
|
|
|
|
|
2013-11-20 19:11:07 +01:00
|
|
|
# Check for code hilite extension
|
|
|
|
if not self.checked_for_codehilite:
|
|
|
|
for ext in self.markdown.registeredExtensions:
|
|
|
|
if isinstance(ext, CodeHiliteExtension):
|
|
|
|
self.codehilite_conf = ext.config
|
|
|
|
break
|
|
|
|
|
|
|
|
self.checked_for_codehilite = True
|
|
|
|
|
|
|
|
# If config is not empty, then the codehighlite extension
|
|
|
|
# is enabled, so we call it to highlite the code
|
|
|
|
if self.codehilite_conf:
|
|
|
|
highliter = CodeHilite(text,
|
|
|
|
force_linenos=self.codehilite_conf['force_linenos'][0],
|
|
|
|
guess_lang=self.codehilite_conf['guess_lang'][0],
|
|
|
|
css_class=self.codehilite_conf['css_class'][0],
|
|
|
|
style=self.codehilite_conf['pygments_style'][0],
|
|
|
|
lang=(lang or None),
|
|
|
|
noclasses=self.codehilite_conf['noclasses'][0])
|
|
|
|
|
|
|
|
code = highliter.hilite()
|
|
|
|
else:
|
|
|
|
code = CODE_WRAP % (langclass, self._escape(text))
|
|
|
|
|
|
|
|
return code
|
2013-01-29 16:14:30 +01:00
|
|
|
|
2013-11-20 19:29:54 +01:00
|
|
|
def format_quote(self, text):
|
|
|
|
paragraphs = text.split("\n\n")
|
|
|
|
quoted_paragraphs = []
|
|
|
|
for paragraph in paragraphs:
|
|
|
|
lines = paragraph.split("\n")
|
|
|
|
quoted_paragraphs.append("\n".join("> " + line for line in lines if line != ''))
|
|
|
|
return "\n\n".join(quoted_paragraphs)
|
|
|
|
|
2013-11-20 21:03:57 +01:00
|
|
|
def placeholder(self, code):
|
|
|
|
return self.markdown.htmlStash.store(code, safe=True)
|
|
|
|
|
2013-11-20 19:42:18 +01:00
|
|
|
def format_fence(self, lang, text):
|
2013-11-20 19:47:06 +01:00
|
|
|
if lang in ('quote', 'quoted'):
|
|
|
|
replacement = self.format_quote(text)
|
|
|
|
return replacement
|
|
|
|
else:
|
2013-11-20 19:48:44 +01:00
|
|
|
code = self.format_code(lang, text)
|
2013-11-20 21:03:57 +01:00
|
|
|
return self.placeholder(code)
|
2013-11-20 19:32:21 +01:00
|
|
|
|
|
|
|
def process_fence(self, m, text):
|
2013-11-20 19:37:02 +01:00
|
|
|
lang = m.group('lang')
|
2013-11-20 19:42:18 +01:00
|
|
|
code = m.group('code')
|
|
|
|
fence_text = self.format_fence(lang, code)
|
2013-11-20 19:53:03 +01:00
|
|
|
before_text = text[:m.start()]
|
|
|
|
end_text = text[m.end():]
|
|
|
|
return '%s\n%s\n%s'% (before_text, fence_text, end_text)
|
2013-01-29 16:14:30 +01:00
|
|
|
|
2012-11-19 17:55:28 +01:00
|
|
|
def run(self, lines):
|
|
|
|
""" Match and store Fenced Code Blocks in the HtmlStash. """
|
|
|
|
|
|
|
|
text = "\n".join(lines)
|
|
|
|
while 1:
|
|
|
|
m = FENCED_BLOCK_RE.search(text)
|
2013-01-29 16:14:30 +01:00
|
|
|
if m:
|
|
|
|
text = self.process_fence(m, text)
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
2012-11-19 17:55:28 +01:00
|
|
|
|
2013-10-15 21:14:51 +02:00
|
|
|
fence = FENCE_RE.search(text)
|
2013-01-29 16:14:30 +01:00
|
|
|
if fence:
|
|
|
|
# If we found a starting fence but no ending fence,
|
|
|
|
# then we add a closing fence before the two newlines that
|
|
|
|
# markdown automatically inserts
|
|
|
|
if text[-2:] == '\n\n':
|
|
|
|
text = text[:-2] + '\n' + fence.group('fence') + text[-2:]
|
2012-11-19 17:55:28 +01:00
|
|
|
else:
|
2013-01-29 16:14:30 +01:00
|
|
|
text += fence.group('fence')
|
|
|
|
m = FENCED_BLOCK_RE.search(text)
|
|
|
|
if m:
|
|
|
|
text = self.process_fence(m, text)
|
2013-01-24 20:20:00 +01:00
|
|
|
|
2012-11-19 17:55:28 +01:00
|
|
|
return text.split("\n")
|
|
|
|
|
|
|
|
def _escape(self, txt):
|
|
|
|
""" basic html escaping """
|
|
|
|
txt = txt.replace('&', '&')
|
|
|
|
txt = txt.replace('<', '<')
|
|
|
|
txt = txt.replace('>', '>')
|
|
|
|
txt = txt.replace('"', '"')
|
|
|
|
return txt
|
|
|
|
|
|
|
|
|
|
|
|
def makeExtension(configs=None):
|
|
|
|
return FencedCodeExtension(configs=configs)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import doctest
|
|
|
|
doctest.testmod()
|