Bonanza Webstores has been replaced with Vercado Webstore by Bonanza. Bonanza will continue to support existing Bonanza Webstore accounts, however no new sign-ups are available.
Learn more about Vercado Webstore by Bonanza.
What is Textile?
Textile is a simple formatting style for text documents, loosely based on some HTML conventions.
Textile User Guide
Sample Textile Text
h2. This is a title h3. This is a subhead This is a bit of paragraph. bq. This is a blockquote.
Writing Textile
A Textile document consists of paragraphs. Paragraphs can be specially formatted by adding a small instruction to the beginning of the paragraph.
h3. Header 3. bq. Blockquote. # Numeric list. * Bulleted list.
Quick Phrase Modifiers
Quick phrase modifiers are also included, to allow formatting of small portions of text within a paragraph.
_emphasis_ __italicized__ *strong* **bold** ??citation?? -deleted text- +inserted text+ ^superscript^ ~subscript~ @code@ %(classname)span%
Links
To make a hypertext link, put the link text in "quotation marks" followed immediately by a colon and the URL of the link.
Optional: text in (parentheses) following the link text, but before the closing quotation mark, will become a title attribute for the link, visible as a tool tip when a cursor is above it.
Example:
"This is a link (This is a title)":http://www.textism.com
Will become:
<a href="http://www.textism.com" title="This is a title">This is a link</a>
Images
To insert an image, put the URL for the image inside exclamation marks.
Optional: text that immediately follows the URL in (parentheses) will be used as the Alt text for the image. Images on the web should always have descriptive Alt text for the benefit of readers using non-graphical browsers.
Optional: place a colon followed by a URL immediately after the closing ! to make the image into a link.
Example:
!http://www.textism.com/common/textist.gif(Textist)!
Will become:
<img alt="Textist" src="http://www.textism.com/common/textist.gif" />
With a link:
!/common/textist.gif(Textist)!:http://textism.com
Will become:
<a href="http://textism.com"><img alt="Textist" src="/common/textist.gif" /></a>
Adding Tables
In Textile, simple tables can be added by separating each column by a pipe.
|a|simple|table|row| |And|Another|table|row|
Styles are applied with curly braces.
table{border:1px solid black}. {background:#ddd;color:red}. |a|red|row|
Additional Information
For a more in-depth users guide, please see The Official Textile Reference Manual