Search code examples
phppear

how to use Pear Text_wiki


The docs on the pear website link to a site that cannot be accessed. Does anyone know a site, article, or book that would explain how to use the Text_wiki package?


Solution

  • The documentation is accessible here: http://pear.php.net/package/Text_Wiki/docs/latest/Text_Wiki/Text_Wiki.html#methodtransform

    In the simplest case you just need:

    $wiki = new Text_Wiki;
    print $wiki->transform($source_text, "Xhtml");