1234567891011121314151617181920212223242526272829303132 |
- /*
- * This file is the main code of Texdi
- * Copyright (C) <2016> <alkeon> [alkeon@autistici.org]
-
- * Texdi is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Texdi is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Texdi. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef __TEDI2HTML__
- #define __TEDI2HTML__
- #include <iostream>
- #include <string>
- using namespace std;
- string tedi2html(string text,string header="",string footer="");
- string links_ht(string line);
- string images_ht(string line);
- string titles_ht(string line);
- string blocks_ht(string line);
- string incomplete_blocks_ht(string line);
- void table_ht(string& line,string& return_text);
- int main_tag(string line);
- #endif
|