Differences between revisions 1 and 2
Revision 1 as of 2005-02-06 23:45:37
Size: 170
Editor: ClarkUpdike
Comment:
Revision 2 as of 2005-02-07 16:08:44
Size: 565
Editor: ClarkUpdike
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Wiki Tips =
 Linking to anchors on another page:: you must use an "interwiki" style link
= Wiki Tidbits =
 Linking to anchors on another page:: you must use an "interwiki" style link.
Line 6: Line 6:

Force a new page (aka arbitrary page name).[[BR]]
{{{["/mynewpage"]}}}

Prevent a New``Page.[[BR]]
{{{Py``System``State}}}

Embedding python (one way--there's others).[[BR]]
{{{
{{{
#!python
print "jython rocks!"
} } } <-- don't include these spaces (it's just to escape them)
}}}

Or ticks for `print "jython rocks!"e`.[[BR]]
{{{`print "jython rocks!"`}}}

Wiki Tidbits

Linking to anchors on another page
you must use an "interwiki" style link.

[wiki:Self/SomePage/SomeSubPage#someBookmark bookmarkDisplayText]

Force a new page (aka arbitrary page name).BR ["/mynewpage"]

Prevent a NewPage.BR Py``System``State

Embedding python (one way--there's others).BR

{{{
#!python
print "jython rocks!"                
} } } <-- don't include these spaces (it's just to escape them)

Or ticks for print "jython rocks!"e.BR `print "jython rocks!"`