Show More
@@ -1,96 +1,105 b'' | |||
|
1 | 1 | from django.core.urlresolvers import reverse |
|
2 | 2 | import markdown |
|
3 | 3 | from markdown.inlinepatterns import Pattern |
|
4 | 4 | from markdown.util import etree |
|
5 | 5 | import boards |
|
6 | 6 | |
|
7 | 7 | __author__ = 'neko259' |
|
8 | 8 | |
|
9 | 9 | |
|
10 | 10 | AUTOLINK_PATTERN = r'(https?://\S+)' |
|
11 | 11 | QUOTE_PATTERN = r'^(?<!>)(>[^>].+)$' |
|
12 | 12 | REFLINK_PATTERN = r'((>>)(\d+))' |
|
13 | 13 | SPOILER_PATTERN = r'%%(.+)%%' |
|
14 | 14 | COMMENT_PATTERN = r'^(//(.+))' |
|
15 | 15 | |
|
16 | 16 | class AutolinkPattern(Pattern): |
|
17 | 17 | def handleMatch(self, m): |
|
18 | 18 | link_element = etree.Element('a') |
|
19 | 19 | href = m.group(2) |
|
20 | 20 | link_element.set('href', href) |
|
21 | 21 | link_element.text = href |
|
22 | 22 | |
|
23 | 23 | return link_element |
|
24 | 24 | |
|
25 | 25 | |
|
26 | 26 | class QuotePattern(Pattern): |
|
27 | 27 | def handleMatch(self, m): |
|
28 | 28 | quote_element = etree.Element('span') |
|
29 | 29 | quote_element.set('class', 'quote') |
|
30 | 30 | quote_element.text = m.group(2) |
|
31 | 31 | |
|
32 | 32 | return quote_element |
|
33 | 33 | |
|
34 | 34 | |
|
35 | 35 | class ReflinkPattern(Pattern): |
|
36 | 36 | def handleMatch(self, m): |
|
37 | ref_element = etree.Element('a') | |
|
38 | 37 | post_id = m.group(4) |
|
39 | ref_element.set('href', reverse(boards.views.jump_to_post, | |
|
40 | kwargs={'post_id': post_id})) | |
|
41 | ref_element.text = m.group(2) | |
|
38 | ||
|
39 | post = Post.objects.filter(id=post_id) | |
|
40 | if post: | |
|
41 | ref_element = etree.Element('a') | |
|
42 | ||
|
43 | if post.thread: | |
|
44 | link = reverse(thread, kwargs={'post_id': post.thread.id}) | |
|
45 | + '#' + post_id) | |
|
46 | else: | |
|
47 | link = reverse(thread, post_id=post_id) | |
|
48 | ||
|
49 | ref_element.set('href', link) | |
|
50 | ref_element.text = m.group(2) | |
|
42 | 51 | |
|
43 | 52 | return ref_element |
|
44 | 53 | |
|
45 | 54 | |
|
46 | 55 | class SpoilerPattern(Pattern): |
|
47 | 56 | def handleMatch(self, m): |
|
48 | 57 | quote_element = etree.Element('span') |
|
49 | 58 | quote_element.set('class', 'spoiler') |
|
50 | 59 | quote_element.text = m.group(2) |
|
51 | 60 | |
|
52 | 61 | return quote_element |
|
53 | 62 | |
|
54 | 63 | |
|
55 | 64 | class CommentPattern(Pattern): |
|
56 | 65 | def handleMatch(self, m): |
|
57 | 66 | quote_element = etree.Element('span') |
|
58 | 67 | quote_element.set('class', 'comment') |
|
59 | 68 | quote_element.text = '//' + m.group(3) |
|
60 | 69 | |
|
61 | 70 | return quote_element |
|
62 | 71 | |
|
63 | 72 | |
|
64 | 73 | class NeboardMarkdown(markdown.Extension): |
|
65 | 74 | def extendMarkdown(self, md, md_globals): |
|
66 | 75 | self._add_neboard_patterns(md) |
|
67 | 76 | self._delete_patterns(md) |
|
68 | 77 | |
|
69 | 78 | def _delete_patterns(self, md): |
|
70 | 79 | del md.parser.blockprocessors['quote'] |
|
71 | 80 | |
|
72 | 81 | del md.inlinePatterns['image_link'] |
|
73 | 82 | del md.inlinePatterns['image_reference'] |
|
74 | 83 | |
|
75 | 84 | def _add_neboard_patterns(self, md): |
|
76 | 85 | autolink = AutolinkPattern(AUTOLINK_PATTERN, md) |
|
77 | 86 | quote = QuotePattern(QUOTE_PATTERN, md) |
|
78 | 87 | reflink = ReflinkPattern(REFLINK_PATTERN, md) |
|
79 | 88 | spoiler = SpoilerPattern(SPOILER_PATTERN, md) |
|
80 | 89 | comment = CommentPattern(COMMENT_PATTERN, md) |
|
81 | 90 | |
|
82 | 91 | md.inlinePatterns[u'autolink_ext'] = autolink |
|
83 | 92 | md.inlinePatterns[u'spoiler'] = spoiler |
|
84 | 93 | md.inlinePatterns[u'comment'] = comment |
|
85 | 94 | md.inlinePatterns[u'reflink'] = reflink |
|
86 | 95 | md.inlinePatterns[u'quote'] = quote |
|
87 | 96 | |
|
88 | 97 | |
|
89 | 98 | def makeExtension(configs=None): |
|
90 | 99 | return NeboardMarkdown(configs=configs) |
|
91 | 100 | |
|
92 | 101 | neboard_extension = makeExtension() |
|
93 | 102 | |
|
94 | 103 | |
|
95 | 104 | def markdown_extended(markup): |
|
96 | 105 | return markdown.markdown(markup, [neboard_extension], safe_mode=True) |
General Comments 0
You need to be logged in to leave comments.
Login now