/******************* vBml parser *******************
* Download the code
* More Cardumen Tools
* Documentation
*
* Enjoy!
* Author: Denny Schlesinger
* Copyright © 2004-2005 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
*
* Link a: [url]domain[/url]
* Link b: [url=domain]display text[/url]
* Links open in a new page
*
* Email a: [email]email address[/email]
* Email b: [email=email address]display text[/email]
*
* Image: [img]image url[/img]
*
* Quote: [quote]text[/quote]
*
* All the tags can be nested to create complex styles
*
* Enjoy!
*
* Author: Denny Schlesinger
* Copyright © 2004-2005 by Denny Schlesinger Top
*
*******************************************************/
|