Version 16 (modified by guest, 6 years ago)

--

drugs online without a prescription prescription medications canada prescription medication listing amoxil without prescription prescription drugs without prescription prescription drugs without prescription prescription drugs for weight loss phentermine on line w/o prescription buy vicodin without prescription medicare prescription drug buy prescription propecia without buy hydrocodone without a prescription buy xanax without prescription in usa medicare prescription coverage free prescription medicine card prescription card drugs online without a prescription medicare prescription plans online prescription medication meridia on line prescription lortab prescription online mexican pharmacy no prescription needed buy hydrocodone online without prescription buy vicodin online no prescription international pharmacies on line no prescription free buy xanax no prescription buy hydrocodone without a prescription buy lortab without prescription buy vicodin overseas without prescription pain medications without a prescription
zoloft side effects anxiety and wellbutrin allegra buying generic levitra buy cheap carisoprodol cheap tramadol allegra buying ambien viagra buy celexa celexa & discontinuation symptoms allegra beck lorcet herbal viagra viagra aldara buy online buy levitra buy xenical buy online xenical wellbutrin carisoprodol cialis bontril buy cheap celexa viagra alternative butalbital online ambien cheap levitra levitra cheap altace buy ultram prozac buy soma cheap order cialis buy cheap altace buy carisoprodol generic viagra generic viagra buy tramadol herbal viagra valium buy levitra online butalbital effects of zoloft viagra alternative cialis buy soma online buy viagra butalbital buy online cheap xenical buy online carisoprodol generic ambien generic viagra generic viagra buy bontril biaxin allegra buying aciphex cheap viagra alternative order cialis soma buy celexa prozac side effect zoloft side effects biaxin carisoprodol buy online buy online xenical butalbital prescription generic viagra biaxin herbal viagra buy online fioricet cialis butalbital buy xenical online bontril online buy xenical online butalbital generic viagra bontril sr generic levitra buy tramadol aldara cheap wellbutrin forum buy cheap xenical herbal viagra aldara cream zoloft cheap xenical buy ultram online discount prozac viagra allegra buying cheap soma tramadol ambien side effects generic viagra buy soma cheap cheap levitra generic cialis viagra buy viagra cheap viagra herbal viagra buy cialis generic viagra buy cheap altace viagra tramadol online biaxin wellbutrin side effects allegra buy online valium aldara buy online generic viagra cheap fioricet cialis wellbutrin cheap bontril prozac side effects buy codeine order cialis viagra alternative wellbutrin sr buy soma cheap aciphex cheap bontril 35mg viagra alternative buy viagra tramadol zoloft withdrawal allegra buy online viagra butalbital online aciphex cheap zoloft withdrawal buy celexa tramadol online generic levitra buy cheap carisoprodol buy cheap fioricet aldara and skin cancer zoloft side effects zoloft side effects buy xenical online cheap viagra buy tramadol zoloft withdrawal allegra buy online zoloft withdrawal

WikiFormatting

Wiki markup is a core feature in Trac, tightly integrating all the other parts of Trac into a flexible and powerful whole.

Trac has a built in small and powerful wiki rendering engine. This wiki engine implements an ever growing subset of the commands from other popular Wikis, especially  MoinMoin.

This page demonstrates the formatting syntax available anywhere WikiFormatting is allowed.

Font Styles

The Trac wiki supports the following font styles:

 * '''bold'''
 * ''italic''
 * '''''bold italic'''''
 * __underline__
 * {{{monospace}}} or `monospace`
 * ~~strike-through~~
 * ^superscript^ 
 * ,,subscript,,

Display:

  • bold
  • italic
  • bold italic
  • underline
  • monospace or monospace
  • strike-through
  • superscript
  • subscript

Note that the {{{...}}} and `...` commands not only select a monospace font, but also treat their content as verbatim text, meaning that no further wiki processing is done on this text.

Headings

You can create heading by starting a line with one up to five equal characters ("=") followed by a single space and the headline text. The line should end with a space followed by the same number of = characters.

Example:

= Heading =
== Subheading ==
=== About ''this'' ===

Display:

Heading

Subheading

About this

Paragraphs

A new text paragraph is created whenever two blocks of text are separated by one or more empty lines.

A forced line break can also be inserted, using:

Line 1[[BR]]Line 2

Display:

Line 1
Line 2

Lists

The wiki supports both ordered/numbered and unordered lists.

Example:

 * Item 1
   * Item 1.1
 * Item 2

 1. Item 1
   1. Item 1.1
 1. Item 2

Display:

  • Item 1
    • Item 1.1
  • Item 2
  1. Item 1
    1. Item 1.1
  2. Item 2

Note that there must be one or more spaces preceding the list item markers, otherwise the list will be treated as a normal paragraph.

Definition Lists

The wiki also supports definition lists.

Example:

 llama::
   some kind of mammal, with hair
 ppython::
   some kind of reptile, without hair
   (can you spot the typo?)

Display:

llama
some kind of mammal, with hair
ppython
some kind of reptile, without hair (can you spot the typo?)

Note that you need a space in front of the defined term.

Preformatted Text

Block containing preformatted text are suitable for source code snippets, notes and examples. Use three curly braces wrapped around the text to define a block quote. The curly braces need to be on a separate line. Example:

 {{{
  def HelloWorld():
      print "Hello World"
 }}}

Display:

 def HelloWorld():
     print "Hello World"

Blockquotes

In order to mark a paragraph as blockquote, indent that paragraph with two spaces.

Example:

  This text is a quote from someone else.

Display:

This text is a quote from someone else.

Tables

Simple tables can be created like this:

||Cell 1||Cell 2||Cell 3||
||Cell 4||Cell 5||Cell 6||

Display:

Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Note that more complex tables can be created using reStructuredText.

Hyperlinks are automatically created for WikiPageNames and URLs. WikiPageLinks can be disabled by prepending an exclamation mark "!" character, such as !WikiPageLink.

Example:

 TitleIndex, http://www.edgewall.com/, !NotAlink

Display:

TitleIndex,  http://www.edgewall.com/, NotAlink

Links can be given a more descriptive title by writing the link followed by a space and a title and all this inside square brackets. If the descriptive title is omitted, then the explicit prefix is disguarded, unless the link is an external link. This can be useful for wiki pages not adhering to the WikiPageNames convention.

Example:

 * [http://www.edgewall.com/ Edgewall Software]
 * [wiki:TitleIndex Title Index]
 * [wiki:ISO9000]

Display:

Wiki pages can link directly to other parts of the Trac system. Pages can refer to tickets, reports, changesets, milestones, source files and other Wiki pages using the following notations:

 * Tickets: #1 or ticket:1
 * Reports: {1} or report:1
 * Changesets: r1, [1] or changeset:1
 * Revision Logs: r1:3, [1:3] or log:branches/0.8-stable#1:3
 * Wiki pages: CamelCase or wiki:CamelCase
 * Milestones: milestone:1.0 or milestone:"End-of-days Release"
 * Files: source:trunk/COPYING
 * Attachments: attachment:"file name.doc"
 * A specific file revision: source:/trunk/COPYING#200
 * A filename with embedded space: source:"/trunk/README FIRST"

Display:

See TracLinks for more in-depth information.

Escaping Links and WikiPageNames

You may avoid making hyperlinks out of TracLinks by preceding an expression with a single "!" (exclamation mark).

Example:

 !NoHyperLink
 !#42 is not a link

Display:

NoHyperLink #42 is not a link

Images

Urls ending with .png, .gif or .jpg are automatically interpreted as image links, and converted to <img> tags.

Example:

http://www.edgewall.com/gfx/trac_example_image.png

Display:

 http://www.edgewall.com/gfx/trac_example_image.png

However, this doesn't give much control over the display mode. This way of inserting images is deprecated in favor of the more powerful Image macro (see WikiMacros).

Macros

Macros are custom functions to insert dynamic content in a page.

Example:

 [[Timestamp]]

Display:

Error: Failed to load processor Timestamp
No macro or processor named 'Timestamp' found

See WikiMacros for more information, and a list of installed macros.

Processors

Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in reStructuredText or HTML.

Example 1:

{{{
#!html
<h1 style="text-align: right; color: blue">HTML Test</h1>
}}}

Display:

HTML Test

Example:

{{{
#!python
class Test:
    def __init__(self):
        print "Hello World"
if __name__ == '__main__':
   Test()
}}}

Display:

class Test:
    def __init__(self):
        print "Hello World"
if __name__ == '__main__':
   Test()

Perl:

my ($test) = 0;
if ($test > 0) {
echo "hello";
}

See WikiProcessors for more information.

Miscellaneous

Four or more dashes will be replaced by a horizontal line (<HR>)

Example:

 ----

Display:



See also: TracLinks, TracGuide, WikiHtml, WikiMacros, WikiProcessors, TracSyntaxColoring.