PHP Classes

File: Example/markdown.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   PHP Markdown and BBCode Parser   Example/markdown.php   Download  
File: Example/markdown.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Markdown and BBCode Parser
Parse and replace Markdown and BBCode by HTML
Author: By
Last change: Update of Example/markdown.php
Date: 2 months ago
Size: 754 bytes
 

Contents

Class file image Download
<?php
/**
 * @title Markdown Markup Language
 *
 * @author Pierre-Henry Soria <ph7software@gmail.com>
 * @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';

$sMarkdownText = file_get_contents('text/markdown.md');

$oMarkdown = new Txt\Markdown($sMarkdownText);
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>Markdown Parser example</title>
</head>
<body>
<?php echo $oMarkdown; ?>
</body>
</html>