includes/wikiengine/Render/Plain/Prefilter.php
author Dan
Fri, 29 May 2009 14:03:05 -0400
changeset 1010 12e76b1acb4e
parent 1 fe660c52c48f
permissions -rw-r--r--
Clarified some licensing issues from the Fedora project's preliminary review.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     1
<?php
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     2
1010
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
     3
/*
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
     4
 * Enano project note: this skeleton class was rewritten due to a licensing issue.
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
     5
 */
1
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     6
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     7
/**
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     8
* 
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     9
* This class implements a Text_Wiki_Render_Xhtml to "pre-filter" source text so
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    10
* that line endings are consistently \n, lines ending in a backslash \
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    11
* are concatenated with the next line, and tabs are converted to spaces.
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    12
*
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    13
* @author Paul M. Jones <pmjones@php.net>
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    14
*
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    15
* @package Text_Wiki
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    16
*
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    17
*/
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    18
1010
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
    19
class Text_Wiki_Render_Plain_Prefilter  extends Text_Wiki_Render
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
    20
{
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
    21
  function token()
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
    22
  {
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
    23
    return '';
12e76b1acb4e Clarified some licensing issues from the Fedora project's preliminary review.
Dan
parents: 1
diff changeset
    24
  }
1
fe660c52c48f Adding /includes
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    25
}