I did a very simple template edit to make it easier for registered users who no nothing about HTML. The mod tells the user how to use the br, p, i, b, and u tags.
Although you could easily modify the hack itself so that BB code would print out html. What I did was.
Open template
vbArticles_addnewarticle
find:
PHP Code:
<smallfont>Full content of the article</smallfont>
add below it:
PHP Code:
<P>
<smallfont>
- Use <br> for line breaks<br>
- Use <p> for double line breaks<br>
- To make text bold, encase it in <b>text</b> <br>
- To make text italic, encase it in <i>text</i> <br>
- To make text underlined, encase it in <u>text</u> <br>
</smallfont>
Do with it what you will.