Skip to content

Commit

Permalink
Use proper HTML tags. No longer on HTML v3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Felds committed Nov 24, 2009
1 parent 5d77bc1 commit f7924ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Text/Markup/Wiki/MediaWiki.pm
Expand Up @@ -120,10 +120,10 @@ class Text::Markup::Wiki::MediaWiki {

for $/<token>.values // () -> $token {
if $token<bold_marker> {
toggle(@style_stack, @promises, 'b');
toggle(@style_stack, @promises, 'strong');
}
elsif $token<italic_marker> {
toggle(@style_stack, @promises, 'i');
toggle(@style_stack, @promises, 'em');
}
elsif $token<wikilink> {
take defined $link_maker
Expand Down

0 comments on commit f7924ef

Please sign in to comment.