[ Index ]

PHP Cross Reference of moodle-2.8

title

Body

[close]

/lib/markdown/ -> MarkdownExtra.php (source)

   1  <?php
   2  #
   3  # Markdown Extra  -  A text-to-HTML conversion tool for web writers
   4  #
   5  # PHP Markdown Extra
   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  # Just force Michelf/Markdown.php to load. This is needed to load
  17  # the temporary implementation class. See below for details.
  18  \Michelf\Markdown::MARKDOWNLIB_VERSION;
  19  
  20  #
  21  # Markdown Extra Parser Class
  22  #
  23  # Note: Currently the implementation resides in the temporary class
  24  # \Michelf\MarkdownExtra_TmpImpl (in the same file as \Michelf\Markdown).
  25  # This makes it easier to propagate the changes between the three different
  26  # packaging styles of PHP Markdown. Once this issue is resolved, the
  27  # _MarkdownExtra_TmpImpl will disappear and this one will contain the code.
  28  #
  29  
  30  class MarkdownExtra extends \Michelf\_MarkdownExtra_TmpImpl {
  31  
  32      ### Parser Implementation ###
  33  
  34      # Temporarily, the implemenation is in the _MarkdownExtra_TmpImpl class.
  35      # See note above.
  36  
  37  }
  38  


Generated: Fri Nov 28 20:29:05 2014 Cross-referenced by PHPXref 0.7.1