##// END OF EJS Templates
Fixed post reflinks that were parsed as quotes in the line start
neko259 -
r925:1c0513f9 default
parent child Browse files
Show More
@@ -62,7 +62,7 b" DIFF_TYPE_JSON = 'json'"
62
62
63 PREPARSE_PATTERNS = {
63 PREPARSE_PATTERNS = {
64 r'>>(\d+)': r'[post]\1[/post]', # Reflink ">>123"
64 r'>>(\d+)': r'[post]\1[/post]', # Reflink ">>123"
65 r'^>(.+)': r'[quote]\1[/quote]', # Quote ">text"
65 r'^(?<!>)>(.+)': r'[quote]\1[/quote]', # Quote ">text"
66 r'^//(.+)': r'[comment]\1[/comment]', # Comment "//text"
66 r'^//(.+)': r'[comment]\1[/comment]', # Comment "//text"
67 }
67 }
68
68
General Comments 0
You need to be logged in to leave comments. Login now