Merge branch 'MDL-45849-selfenrol' of https://github.com/Peterburnett/moodle
[moodle.git] / lib / markdown / MarkdownInterface.php
blob7fc0da06e298974104f9aeb11d566b3ae58a85da
1 <?php
2 /**
3 * Markdown - A text-to-HTML conversion tool for web writers
5 * @package php-markdown
6 * @author Michel Fortin <michel.fortin@michelf.com>
7 * @copyright 2004-2018 Michel Fortin <https://michelf.com/projects/php-markdown/>
8 * @copyright (Original Markdown) 2004-2006 John Gruber <https://daringfireball.net/projects/markdown/>
9 */
11 namespace Michelf;
13 /**
14 * Markdown Parser Interface
16 interface MarkdownInterface {
17 /**
18 * Initialize the parser and return the result of its transform method.
19 * This will work fine for derived classes too.
21 * @api
23 * @param string $text
24 * @return string
26 public static function defaultTransform($text);
28 /**
29 * Main function. Performs some preprocessing on the input text
30 * and pass it through the document gamut.
32 * @api
34 * @param string $text
35 * @return string
37 public function transform($text);