Skip to content

Commit

Permalink
new blockquote support
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Feb 15, 2016
1 parent af664ee commit 34e2b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appier_extras/utils/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(self):
header = r"(?P<header>^(?P<header_index>#+) (?P<header_value>.+)$)"
list = r"(?P<list>^(?P<list_index>[ \t]*)[\*\+\-] (?P<list_value>[^\r\n]+))"
listo = r"(?P<listo>^(?P<listo_index>[ \t]*)(?P<listo_number>\d+)\. (?P<listo_value>[^\r\n]+))"
blockquote = r"(?P<blockquote>^[\>] (?P<blockquote_value>[^\r\n]+))"
blockquote = r"(?P<blockquote>^[\>][ \t]*(?P<blockquote_value>[^\r\n]*))"
image = r"(?P<image>\!(?P<image_label>\[.+?\])(?P<image_value>\(.+?\)))"
link = r"(?P<link>(?P<link_label>\[.+?\])(?P<link_value>\([^ ]+\)))"
bold = r"(?P<bold>\*\*(?P<bold_value>[^\0]+?)\*\*)"
Expand Down

0 comments on commit 34e2b1c

Please sign in to comment.