Converting from BBcode to HTML
Primary tabs
Since the migration from PHP-Fusion to Drupal, a lot has changed on The Den. One of the major changes is the removal of BBcode support for formatting. Drupal 7 supports a 'filtered HTML' format that allows members to use simple HTML without giving them access to code that could cause potential security threats. This throws a little bit of a learning curve at members who have been here for some time. So, to aid with this process, here is a guide to converting from the standard BBcode elements to standard HTML.
Bold:
[b]Some Text[/b]
becomes
<b>Some Text</b>Italic:
[i]Some Text[/i]
becomes
<em>Some Text</em>Underline:
[u]Some Text[/u]
becomes
<u>Some Text</u>Lists:
[olist=type]
Item 1
Item 2
[/olist]
becomes
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
[ulist=type]
Item 1
Item 2
[/ulist]
becomes
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
- 1169 reads
Recent comments