/******************* vBml parser *******************
* Download the code
* More Cardumen Tools
* Documentation
*
* Enjoy!
* Author: Denny Schlesinger
* Copyright © 2004 by Denny Schlesinger
*******************************************************/
|
|
|
/******************* vBml parser *******************
*
* Marking up forum posts with square bracket[] tags
* has become very common
*
* vBml parser is a php based script that will parse the
* square bracked mark up and convert it to valid HTML.
*
* For now the parser can convert:
*
* Styles:
* bold: [b]text[/b]
* italic: [i]text[/i]
* underline: [u]text[/u]
*
* Text color: [color=red]text[/color]
* Font family: [font=times]text[/font]
* Font size: [size=200]text[/size] = 200 percent
*
* All the tags can be nested to create complex styles
*
* Enjoy!
*
* Author: Denny Schlesinger
* Copyright © 2004 by Denny Schlesinger Top
*
*******************************************************/
|