diff options
author | Artem Yunusov <nedrlab@gmail.com> | 2008-08-02 13:53:06 +0500 |
---|---|---|
committer | Artem Yunusov <nedrlab@gmail.com> | 2008-08-02 13:53:06 +0500 |
commit | 495578c86f58b9a84d8583825768a84eebdd8a9f (patch) | |
tree | 9d0c7129df85ccc71c4b3673a89aa2de7fa09e49 /tests/extensions-x-codehilite/code.txt | |
parent | e54a1868b38c53073eb54df313962a105819b03e (diff) | |
parent | 6a63cadc9a7738c9495bb1eec435908a11fec469 (diff) | |
download | markdown-495578c86f58b9a84d8583825768a84eebdd8a9f.tar.gz markdown-495578c86f58b9a84d8583825768a84eebdd8a9f.tar.bz2 markdown-495578c86f58b9a84d8583825768a84eebdd8a9f.zip |
Merge git://gitorious.org/python-markdown/mainline
Conflicts:
markdown.py
mdx_rss.py
Diffstat (limited to 'tests/extensions-x-codehilite/code.txt')
-rw-r--r-- | tests/extensions-x-codehilite/code.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/extensions-x-codehilite/code.txt b/tests/extensions-x-codehilite/code.txt new file mode 100644 index 0000000..6c62e6a --- /dev/null +++ b/tests/extensions-x-codehilite/code.txt @@ -0,0 +1,12 @@ + +Some text + + #!python + def __init__ (self, pattern) : + self.pattern = pattern + self.compiled_re = re.compile("^(.*)%s(.*)$" % pattern, re.DOTALL) + + def getCompiledRegExp (self) : + return self.compiled_re + +More text
\ No newline at end of file |