| 
<?php/**
 * @title            BbCode Markup Language
 *
 * @author           Pierre-Henry Soria <[email protected]>
 * @copyright        (c) 2012-2013, Pierre-Henry Soria. All Rights Reserved.
 * @license          Lesser General Public License; See LICENSE.txt in the root directory.
 * @link             http://github.com/pH-7
 * @package          PH7
 * @version          1.0
 */
 
 namespace PH7;
 define('PH7', true);
 
 use PH7\Parse\Text as Txt;
 
 require '_autoload.php';
 
 $sBbCodeText = file_get_contents('text/bbcode.bbc');
 
 $oBbCode = new Txt\BbCode($sBbCodeText);
 ?>
 <!DOCTYPE html>
 <html lang="en-US">
 <head>
 <meta charset="utf-8" />
 <title>BBCode Parser example</title>
 </head>
 <body>
 <?php echo $oBbCode; ?>
 </body>
 </html>
 
 |