[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
1 <?php 2 # 3 # Markdown - A text-to-HTML conversion tool for web writers 4 # 5 # PHP Markdown 6 # Copyright (c) 2004-2014 Michel Fortin 7 # <http://michelf.com/projects/php-markdown/> 8 # 9 # Original Markdown 10 # Copyright (c) 2004-2006 John Gruber 11 # <http://daringfireball.net/projects/markdown/> 12 # 13 namespace Michelf; 14 15 16 # 17 # Markdown Parser Interface 18 # 19 20 interface MarkdownInterface { 21 22 # 23 # Initialize the parser and return the result of its transform method. 24 # This will work fine for derived classes too. 25 # 26 public static function defaultTransform($text); 27 28 # 29 # Main function. Performs some preprocessing on the input text 30 # and pass it through the document gamut. 31 # 32 public function transform($text); 33 34 } 35 36 37 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |