php/texy/http/index.php
author František Kučera <franta-hg@frantovo.cz>
Thu Feb 09 12:23:09 2012 +0100 (2012-02-09)
changeset 202 8d141ea76a2d
permissions -rw-r--r--
Texy syntaxe: oprava chyby – ztrácely se konce řádků (problém u elementů s atributy).
franta-hg@136
     1
<?php
franta-hg@136
     2
franta-hg@136
     3
$vstup = urldecode(file_get_contents('php://input'));
franta-hg@136
     4
franta-hg@136
     5
require_once "texy-2.1/texy/texy.php";
franta-hg@136
     6
$texy = new Texy();
franta-hg@136
     7
$texy->encoding = "UTF-8";
franta-hg@136
     8
$texy->setOutputMode(Texy::XHTML1_STRICT);
franta-hg@136
     9
$texy->process(NULL); //advertisingNotice nepotřebujeme: <!-- by Texy2! -->
franta-hg@136
    10
$vysledek = $texy->process($vstup);
franta-hg@136
    11
franta-hg@136
    12
echo($vysledek);
franta-hg@136
    13
franta-hg@136
    14
?>