-
Notifications
You must be signed in to change notification settings - Fork 13
Home
Jens Diemer edited this page Aug 20, 2022
·
4 revisions
Welcome to python-creole Wiki!
_______________________________________________________________________________
*** Convert creole into html: ***
<h2>simple demo</h2>
<p>You can convert from:</p>
<ul>
<li><strong>creole2html</strong>, <strong>html2creole</strong>, <strong>html2rest</strong>, <strong>html2markdown</strong>, <i>html2textile</i></li>
</ul>
<h3>a table:</h3>
<table>
<tr>
<th>headline 1</th>
<th>headline 2</th>
</tr>
<tr>
<td>1.1. cell</td>
<td>1.2. cell</td>
</tr>
<tr>
<td>2.1. cell</td>
<td>2.2. cell</td>
</tr>
</table>
<hr />
<p>More info on our <a href="https://github.com/jedie/python-creole/">Homepage</a>.</p>
_______________________________________________________________________________
*** Convert html back into creole: ***
== simple demo
You can convert from:
* **creole2html**, **html2creole**, **html2rest**, **html2markdown**, //html2textile//
=== a table:
|= headline 1 |= headline 2 |
| 1.1. cell | 1.2. cell |
| 2.1. cell | 2.2. cell |
----
More info on our [[https://github.com/jedie/python-creole/|Homepage]].
_______________________________________________________________________________
*** Convert html into ReStructuredText: ***
-----------
simple demo
-----------
You can convert from:
* **creole2html**, **html2creole**, **html2rest**, **html2markdown**, *html2textile*
a table:
========
+------------+------------+
| headline 1 | headline 2 |
+============+============+
| 1.1. cell | 1.2. cell |
+------------+------------+
| 2.1. cell | 2.2. cell |
+------------+------------+
----
More info on our `Homepage <https://github.com/jedie/python-creole/>`_.
_______________________________________________________________________________
*** Convert html into textile: ***
h2. simple demo
You can convert from:
* *creole2html*, *html2creole*, *html2rest*, *html2markdown*, __html2textile__
h3. a table:
|_. headline 1|_. headline 2|
|1.1. cell|1.2. cell|
|2.1. cell|2.2. cell|
----
More info on our "Homepage":https://github.com/jedie/python-creole/.
_______________________________________________________________________________
*** Convert html into markdown: ***
## simple demo
You can convert from:
* **creole2html**, **html2creole**, **html2rest**, **html2markdown**, _html2textile_
### a table:
| headline 1 | headline 2 |
| ---------- | ---------- |
| 1.1. cell | 1.2. cell |
| 2.1. cell | 2.2. cell |
----
More info on our [Homepage](https://github.com/jedie/python-creole/).