author | František Kučera <franta-hg@frantovo.cz> |
Sun, 20 Jun 2010 14:46:47 +0200 | |
changeset 145 | 0efefbf5f8b6 |
parent 136 | 230bd05dcfec |
permissions | -rw-r--r-- |
1 <?php
3 $vstup = urldecode(file_get_contents('php://input'));
5 require_once "texy-2.1/texy/texy.php";
6 $texy = new Texy();
7 $texy->encoding = "UTF-8";
8 $texy->setOutputMode(Texy::XHTML1_STRICT);
9 $texy->process(NULL); //advertisingNotice nepotřebujeme: <!-- by Texy2! -->
10 $vysledek = $texy->process($vstup);
12 echo($vysledek);
14 ?>