Handbook
MarkupsMost of BoltWire's markups are simple and easy to learn. They are similar to other wikis, though each system varies slightly. The exact display can also vary depending on your skin's style sheet. Here's a few more notes on markups. And here's a tutorial on how to change the markup table.
As noted elsewhere, there are other markups BoltWire will recognize as well, including numerous variables, conditionals, and functions. BoltWire also allows you to create powerful forms with interactive inputs fields and commands. Many simple HTML tags are allowed, and most white space is honored (including line returns, tabs and spaces). Furthermore, BoltWire has extensive styling support. See the handbook for information about these advanced markups.
Here is a list of the most common markups in BoltWire and what they produce--but it is not exhaustive. You can view this table at any time by calling the help action.
//text// | text | italics | ||||||
**text** | text | bold | ||||||
__text__ | text | underline | ||||||
||text|| | text | highlight | ||||||
@@text@@ | @@text@@ | monospace | ||||||
! text | text |
header (h1) | ||||||
!! text | text |
header (h2) | ||||||
!!! text | text |
header (h3) | ||||||
* bullet ** bullet *** bullet |
|
unnumbered bullets | ||||||
# bullet ## bullet ### bullet |
|
numbered bullets | ||||||
-> text <- |
text |
block indent | ||||||
[t] [r][h]header1 [h]header2 [r][c]cell1 [c]cell2 [r][c]cell3 [c]cell4 [t] |
|
tables most parameters allowed, border added for display |
||||||
---- | horizontal line | |||||||
(c) (r) (t) or (tm) |
© ® ™ |
html symbols | ||||||
{ 2+3 } | 5 | Simple math expressions | ||||||
[[some.page]] [[some.page|label]] [[some.page|+]] |
some.page label Page |
various links urls accepted |
||||||
[[email@example.com]] | email@example.com | email link | ||||||
#tags | #tags | Easy tagging system | ||||||
img:boltwire.gif [^boltwire.gif parameters^] |
![]() ![]() |
image shortcut image with css parameters |
||||||
file:download.zip [^download.zip^] |
download.zip | file download | ||||||
<center>text</center> | text |
align text (also left, right) |
||||||
<color=red>text</color> | text | set color (also #f7f7f7) |
||||||
<size=150%>text</size> | text | set size (also pt) | ||||||
<text case=caps> text </text> |
TEXT | advanced string processing: understands case, substring, trim, position, and length |
||||||
<box> **BOLD** </box> |
BOLD |
A box with markup | ||||||
<code> **BOLD** </code> |
**BOLD** |
Display source code. Try also html, markup and debug. | ||||||
/= **BOLD** =/ | **BOLD** | Don't process markup | ||||||
`[[link|+]] | [[link|+]] | Backtick escapes next character | ||||||
/*comment*/ | hidden comments |