Skip to content

Commit

Permalink
Revert "Use proper HTML tags. No longer on HTML v3."
Browse files Browse the repository at this point in the history
This reverts commit f7924ef.
Our primary goal is to stay close to what MediaWiki does. Besides,
there's nothing improper about <i> and <b>; they are not deprecated.
  • Loading branch information
Carl Masak committed Nov 24, 2009
1 parent e646f7b commit e2df51b
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, 'strong');
toggle(@style_stack, @promises, 'b');
}
elsif $token<italic_marker> {
toggle(@style_stack, @promises, 'em');
toggle(@style_stack, @promises, 'i');
}
elsif $token<wikilink> {
take defined $link_maker
Expand Down

0 comments on commit e2df51b

Please sign in to comment.