aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions-x-codehilite/code.txt
diff options
context:
space:
mode:
authorArtem Yunusov <nedrlab@gmail.com>2008-08-02 13:53:06 +0500
committerArtem Yunusov <nedrlab@gmail.com>2008-08-02 13:53:06 +0500
commit495578c86f58b9a84d8583825768a84eebdd8a9f (patch)
tree9d0c7129df85ccc71c4b3673a89aa2de7fa09e49 /tests/extensions-x-codehilite/code.txt
parente54a1868b38c53073eb54df313962a105819b03e (diff)
parent6a63cadc9a7738c9495bb1eec435908a11fec469 (diff)
downloadmarkdown-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.txt12
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