At line 68 changed 2 lines |
For security reasons uploading images is not permitted, but you can embed |
any image in the wiki code by putting the image available somewhere on the web in one of the allowed formats, and then just linking to it. |
You can embed any image in the wiki code by putting the image available somewhere on the web in one of the allowed formats, and then just linking to it. |
At line 74 added 4 lines |
You can also attach an image, and refer to it as if it were any other page. See [WikiAttachments] for more information. |
|
If you need more layout control (or things like captions), check out the [Image] -plugin. It can do oodles more than just simple embedding. |
|
At line 81 added 6 lines |
!Headings |
|
JSPWiki gives you three kinds of headings: A small one (denoted by starting a line with a single exclamation mark '!'), a medium-sized one (two exclamation marks), or a large one (three marks). |
|
All headings also generate a "named anchor", so that you can refer from other wikipages to this wikipage. See [Named Headings] for more information. |
|
At line 168 added one line |
!Styles |
At line 170 added 25 lines |
%%commentbox |
__Hi there!__\\ |
It's actually quite possible to do things like put comment boxes like this directly on your WikiPage. This sample comment box uses the "commentbox" style, as defined in the included "jspwiki.css" style sheet. To make a box like this, just use {{{%%commentbox <text> %%}}}. |
%% |
In addition to the simple styles represented by the WikiMarkup, we also allow you to put in your own styles. For example: |
{{{ |
%%small |
This is small text |
%% |
}}} |
uses the defined CSS style called "small", as defined in the jspwiki.css file. These may vary from site to site, and it is up to the site administrator to define a style. |
|
You can also define almost any CSS style command: |
{{{ |
%%( font-size: 150%; color: red; ) |
Hello, world! |
%% |
}}} |
would render as: |
%%( font-size: 150%; color: red; ) |
Hello, world! |
%% |
|
__NOTE__ You have to mark the end of the text you want to finish being styled using {{{%%}}}! |
|
At line 211 added 4 lines |
!Attaching files |
|
If the administrator of the wiki has configured it, there is a "Attach file..." link at the bottom of every page. Clicking it allows you to attach files into pages. For more information, please see [WikiAttachments]. |
|
At line 182 changed one line |
where ''variablename'' is the name of the variable you want to insert. Note that variable names are case-insensitive - that is, "pagename" is the same as "paGeNamE" and "PageName". |
where ''variablename'' is the name of the variable you want to insert. Note that variable names are case-insensitive - that is, "pagename" is the same as "paGeNamE" and "PageName". |
At line 190 changed one line |
[[{INSERT <plugin class> WHERE param1=value, param2=value, ...}] |
[[{INSERT <plugin class> WHERE param1=value, param2=value, ...}] |