Skip to content

Commit

Permalink
Fixed definition lists
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarber committed Mar 15, 2009
1 parent 633affd commit 5495990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/redcloth_scan/redcloth_scan.rl
Expand Up @@ -173,7 +173,7 @@
footnote_start { fgoto footnote; };
horizontal_rule { INLINE(html, "hr"); };
list_start { CLEAR_LIST(); LIST_ITEM(); fgoto list; };
dl_start { p = ts; INLINE(html, "dl_open"); ASET("type", "dt"); fgoto dl; };
dl_start { fexec(ts + 1); INLINE(html, "dl_open"); ASET("type", "dt"); fgoto dl; };
table { INLINE(table, "table_close"); DONE(table); fgoto block; };
link_alias { STORE_LINK_ALIAS(); DONE(block); };
aligned_image { RESET_TYPE(); fgoto block; };
Expand Down

0 comments on commit 5495990

Please sign in to comment.