filters: Allow id as an attribute

This commit is contained in:
Andre D
2013-01-14 00:30:16 -05:00
committed by Neil Williams
parent 20d1f9fe9e
commit 660f834263

View File

@@ -183,7 +183,7 @@ markdown_user_tags = ('table', 'th', 'tr', 'td', 'tbody', 'img',
'tbody', 'thead', 'tr', 'tfoot', 'caption')
for bt in markdown_boring_tags:
markdown_ok_tags[bt] = ()
markdown_ok_tags[bt] = ('id')
for bt in markdown_user_tags:
markdown_ok_tags[bt] = ('colspan', 'rowspan', 'cellspacing', 'cellpadding', 'align', 'scope')