The Textile Markup Reference for Textpattern
1) For long blocks of code with blank lines in between: Use the extended block directive bc..
and end the block with p.
or with another block tag.
bc.. REM QuickBASIC example
INPUT "What is your name: ", UserName$
PRINT "Hello "; UserName$
DO
INPUT "How many stars do you want: ", NumStars
Stars$ = STRING$(NumStars, "*")
PRINT Stars$
DO
INPUT "Do you want more stars? ", Answer$
LOOP UNTIL Answer$ <> ""
Answer$ = LEFT$(Answer$, 1)
LOOP WHILE UCASE$(Answer$) = "Y"
PRINT "Goodbye "; UserName$
2) For inline snippets of code: Wrap with the at @ character:
A line with @code@
3) Note: The pre.
tag is similar to the bc.
tag, but no <code>
… </code>
tags are used within a <pre>
block.
Paste code
into the box above.
Further Information
PHP Textile versions
Textile related linklists
Tools
Blank input form
Table Data Converter
Report Issues
Issues on PHP Textile (GitHub)