Sha256: af7f77aab73867de5f054936516e254f8e68b8162cb8996219652380600c106e

Contents?: true

Size: 710 Bytes

Versions: 9

Compression:

Stored size: 710 Bytes

Contents

<?php
#
# Markdown  -  A text-to-HTML conversion tool for web writers
#
# PHP Markdown
# Copyright (c) 2004-2014 Michel Fortin
# <http://michelf.com/projects/php-markdown/>
#
# Original Markdown
# Copyright (c) 2004-2006 John Gruber
# <http://daringfireball.net/projects/markdown/>
#
namespace Michelf;


#
# Markdown Parser Interface
#

interface MarkdownInterface {

  #
  # Initialize the parser and return the result of its transform method.
  # This will work fine for derived classes too.
  #
  public static function defaultTransform($text);

  #
  # Main function. Performs some preprocessing on the input text
  # and pass it through the document gamut.
  #
  public function transform($text);

}


?>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
guard-mthaml-0.3.1 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.3.0 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.2.5 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.2.4 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.2.3 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.2.2 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.2.1 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.2.0 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
guard-mthaml-0.1.0 vendor/michelf/php-markdown/Michelf/MarkdownInterface.php