KnpMarkdownBundle/MarkdownParserInterface.php
Michiel Missotten 7c05b45fae Migration to MichelFortin's implementation.
Since flydev has marked his version as deprecated (it was a simple composer port of Michel Fortin's initial project), it seems good to revert the dependency to the stable/continued project.
2014-02-13 16:52:14 +01:00

16 lines
268 B
PHP

<?php
namespace Knp\Bundle\MarkdownBundle;
interface MarkdownParserInterface
{
/**
* Converts text to html using markdown rules
*
* @param string $text plain text
*
* @return string rendered html
*/
function transform($text);
}