2 * XML Web generátor – program na generování webových stránek
3 * Copyright © 2012 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package cz.frantovo.xmlWebGenerator.makra;
20 import java.io.IOException;
21 import java.io.PrintStream;
22 import static cz.frantovo.xmlWebGenerator.NástrojeCLI.*;
27 * @author František Kučera (frantovo.cz)
31 private static final String PŘÍKAZ_MARKDOWN = "markdown";
34 * Převede text ve wiki syntaxi do XHTML.
35 * @param wiki vstupní text v dané wiki syntaxi
36 * @param syntaxe null nebo volitelně syntaxe (markdown, texy)
37 * @return naformátované XHTML
39 * - vracet místo textu instanci com.icl.saxon.om.NodeInfo http://saxon.sourceforge.net/saxon6.5.3/extensibility.html
40 * - nebo kontrolovat validitu vygenerovaného kódu (v současnosti se spoléháme na bezchybnost markdownu)
43 public static String formátujWiki(String wiki, String syntaxe) throws IOException {
44 if (isPříkazDostupný(PŘÍKAZ_MARKDOWN)) {
45 Runtime r = Runtime.getRuntime();
46 Process p = r.exec(new String[]{PŘÍKAZ_MARKDOWN});
49 * TODO: oříznout mezery na začátcích řádků, pokud je jich všude stejně?
52 PrintStream vstupProcesu = new PrintStream(p.getOutputStream());
53 vstupProcesu.print(wiki);
56 String chyby = načtiProud(p.getErrorStream());
57 String xhtml = načtiProud(p.getInputStream());
59 if (chyby.length() == 0) {
62 System.err.print("Při zpracování wiki syntaxe došlo k chybě: " + chyby);
66 System.err.println("Příkaz " + PŘÍKAZ_MARKDOWN + " není na vašem systému dostupný → nelze formátovat texty ve wiki syntaxi.");
67 System.err.println("Můžete ho nainstalovat pomocí:");
68 System.err.println("\t$ aptitude install markdown # (Debian/Ubuntu)");
69 System.err.println("\t$ yum install perl-Text-Markdown # (Fedora/RedHat)");