Textile to HTML Converter - Redmine Migration Tool
Convert Textile markup to HTML for Redmine wikis, legacy Rails apps, Textpattern migration. Fast, private, browser-based conversion.
Note: First conversion initializes Pandoc WebAssembly (~55MB). Subsequent conversions are instant.
Drop Textile file here or click to browse
Accepts .textile, .txt filesEnter Textile to see preview
Common Textile Syntax
| Textile Syntax | Description | HTML Result |
|---|---|---|
*bold* |
Strong emphasis | bold |
_italic_ |
Emphasis | italic |
@code@ |
Inline code | code |
h1. Title |
Heading level 1 | <h1>Title</h1> |
h2. Subtitle |
Heading level 2 | <h2>Subtitle</h2> |
# Item |
Ordered list | <ol><li>Item</li></ol> |
* Item |
Unordered list | <ul><li>Item</li></ul> |
"text":url |
Hyperlink | <a href="url">text</a> |
!image.jpg! |
Image | <img src="image.jpg" /> |
|_. Header| |
Table header cell | <th>Header</th> |
|Cell| |
Table data cell | <td>Cell</td> |
bq. Quote |
Blockquote | <blockquote>Quote</blockquote> |
bc. code |
Block code | <pre><code>code</code></pre> |
Copied to clipboard