File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,17 @@ def test_trailing_question_mark(self):
205
205
converted_test_string = markdown .markdown (test_string , extensions = [self .verto_extension ])
206
206
expected_string = self .read_test_file (self .processor_name , 'trailing_question_mark_expected.html' , strip = True ).strip ()
207
207
self .assertEqual (expected_string , converted_test_string )
208
+
209
+ def test_angle_brackets (self ):
210
+ '''Tests paths with brackets_in_link, inside angle brackets.'''
211
+ test_string = self .read_test_file (self .processor_name , 'angle_brackets.md' )
212
+
213
+ # processor = ExternalLinkPattern(self.ext, self.md.parser)
214
+ # self.assertIsNotNone(re.search(processor.compiled_re, test_string))
215
+
216
+ converted_test_string = markdown .markdown (test_string , extensions = [self .verto_extension ])
217
+ expected_string = self .read_test_file (self .processor_name , 'angle_brackets_expected.html' , strip = True ).strip ()
218
+ self .assertEqual (expected_string , converted_test_string )
208
219
209
220
def test_multiple_links (self ):
210
221
'''Tests that multiple links are processed.'''
You can’t perform that action at this time.
0 commit comments