Author Topic: Have BBcode generate <strong> and <em> tags instead of <i> and <b>  (Read 619 times)

0 Members and 1 Guest are viewing this topic.

Offline ccbtimewiz

  • Dreamer
  • Guru
  • *
  • Posts: 1304
  • Karma: 2100
  • Gender: Male
  • $info->close();
    • Dream Portal
  • SMF Version: SMF 2.0 RC4
SMF 100 and 200 series:

Open ./Sources/Subs.php

Find:
:
array(
'tag' => 'b',
'before' => '<b>',
'after' => '</b>',
),

Replace with:
:
array(
'tag' => 'b',
'before' => '<strong>',
'after' => '</strong>',
),

Find:
:
array(
'tag' => 'i',
'before' => '<i>',
'after' => '</i>',
),

Replace with:
:
array(
'tag' => 'i',
'before' => '<em>',
'after' => '</em>',
),