Wiki source code of XWikiSyntax

Version 34.9 by Vincent Massol on 2008/12/18

Show last authors
1 #* Temporarily comment this out. When the new content is stabilized commit it in SVN in XE
2 $context.setCacheDuration(100000)
3 #set ($content = $xwiki.getURLContent("http://svn.xwiki.org/svnroot/xwiki/enterprise/trunk/wiki/src/main/resources/XWiki/XWikiSyntax.xml"))
4
5 #set ($newdoc = $xwiki.getDocument("Dummy"))
6 #set ($newdocprivate = $newdoc.getDocument())
7 $newdocprivate.fromXML($content)
8
9 $xwiki.parseContent($newdoc.content)
10 *#
11
12 #startfloatingbox()
13 *Contents*
14 #toc ("2" "2" "")
15 #endfloatingbox()
16
17 1 XWiki Syntaxes
18
19 Starting with XWiki Enterprise version 1.7 and above we've introduced a new wiki syntax. So we're now naming the current syntax the ~~XWiki Syntax v1.0~~ and the new syntax is logically called the ~~XWiki Syntax v2.0~~. The main reasons for introducing the new syntax were:
20 * Fix the limitations and ambiguities of the XWiki 1.0 syntax (which was inspired by both Radeox - the underlying rendering engine - and TWiki).
21 ** Not optimal symbols. For example the symbol for bold was single stars. This was causing trouble when users were entering text containing stars since that text was mistakenly considered to be bold when it wasn't. Hence we've rationalized the syntax by using at least double characters everywhere.
22 ** Ambiguities. For example there was an ambiguity between a bold item starting a line and a bulletted list. Resolving the ambiguities was required in order to rewrite the WYSIWYG editor so that it could be deterministic.
23 * Be closer to the [Creole 1.0 syntax>http://www.wikicreole.org/] which is becoming a standard for wiki syntax. In addition the Creole community has taken the time to analyze all the existing wiki syntaxes before deciding on symbols. The choices made are thus very good.
24
25 In addition to these 2 XWiki syntaxes we've also changed our underlying rendering engine (was Radeox previously) in favor of our own engine which is superset wrapper around [Wikimodel>http://code.google.com/p/wikimodel/] and [Doxia>http://maven.apache.org/doxia/] (and possibly others in the future). This has allowed us to provide other syntaxes in the wiki: [MediaWiki, Confluence, JSPWiki, Creole, TWiki and more>#HOthersyntaxes]
26
27 1.1 General Remarks
28
29 XWiki Syntax v2.0 corrects some errors entered by the user as shown in the examples in the table below.
30
31 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
32 <tr>
33 <th>Example of invalid syntax</th>
34 <th>Fixed XWiki Syntax 2.0</th>
35 </tr>
36 <tr>
37 {pre}
38 <td>
39 **bold
40 </td>
41 <td>
42 **bold**
43 </td>
44 {/pre}
45 </tr>
46 <tr>
47 {pre}
48 <td>
49 || table cell<br/>
50 * list item
51 </td>
52 <td>
53 || table cell<br/>
54 <br/>
55 * list item
56 </td>
57 {/pre}
58 </tr>
59 <tr>
60 {pre}
61 <td>
62 paragraph<br/>
63 ----<br/>
64 paragraph
65 </td>
66 <td>
67 paragraph<br/>
68 <br/>
69 ----<br/>
70 <br/>
71 paragraph
72 </td>
73 {/pre}
74 </tr>
75 <tr>
76 {pre}
77 <td>
78 &lt;new line at beginning of document&gt;<br/>
79 paragraph
80 </td>
81 <td>
82 paragraph
83 </td>
84 {/pre}
85 </tr>
86 </table>
87
88 1.1 Paragraphs
89
90 Paragraphs are text elements separated by 2 or more new lines.
91
92 #info("In XWiki Syntax 2.0 new lines are honored which is not the case in XWiki Syntax 1.0 and in Creole syntax.")
93
94 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
95 <tr>
96 <th>Feature</th>
97 <th>XWiki Syntax 1.0</th>
98 <th>XWiki Syntax 2.0</th>
99 <th>Result XWiki Syntax 1.0</th>
100 <th>Result XWiki Syntax 1.2</th>
101 </tr>
102 <tr>
103 {pre}
104 <td>Simple paragraph</td>
105 <td>This is a paragraph</td>
106 <td>This is a paragraph</td>
107 {/pre}
108 <td>This is a paragraph</td>
109 <td>This is a paragraph</td>
110 </tr>
111 <tr>
112 {pre}
113 <td>Paragraph on multiple lines</td>
114 <td>Paragraph on<br/>multiple lines</td>
115 <td>Paragraph on<br/>multiple lines</td>
116 {/pre}
117 <td>
118 Paragraph on
119 multiple lines
120 </td>
121 <td>
122 Paragraph on<br/>
123 multiple lines
124 </td>
125 </tr>
126 <tr>
127 {pre}
128 <td>Two paragraphs</td>
129 <td>Paragraph one<br/><br/>Paragraph two</td>
130 <td>Paragraph one<br/><br/>Paragraph two</td>
131 {/pre}
132 <td>
133 Paragraph one
134
135
136
137
138
139
140
141
142
143
144 Paragraph two
145 </td>
146 <td>
147 Paragraph one
148
149 Paragraph two
150 </td>
151 </tr>
152 <tr>
153 {pre}
154 <td>Parametrized paragraph</td>
155 <td>
156 &lt;p style="text-align:center;color:blue"&gt;Centered and blue paragraph&lt;/&gt;
157 </td>
158 <td>
159 (% style="text-align:center;color:blue" %)<br/>
160 Centered and blue paragraph
161 {/pre}
162 <td>
163 <p style="text-align:center;color:blue">Centered and blue paragraph</p>
164 </td>
165 <td>
166 <p style="text-align:center;color:blue">Centered and blue paragraph</p>
167 </td>
168 </tr>
169 </table>
170
171 1.1 Headers
172
173 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
174 <tr>
175 <th>Feature</th>
176 <th>XWiki Syntax 1.0</th>
177 <th>XWiki Syntax 2.0</th>
178 <th>Result</th>
179 </tr>
180 <tr>
181 {pre}
182 <td>Standard headers</td>
183 <td>
184 #set ($h1 = "1")
185 #set ($h2 = "1.1")
186 #set ($h3 = "1.1.1")
187 #set ($h4 = "1.1.1.1")
188 #set ($h5 = "1.1.1.1.1")
189 #set ($h6 = "1.1.1.1.1.1")
190 $h1 level 1<br/>
191 $h2 level 2<br/>
192 $h3 level 3<br/>
193 $h4 level 4<br/>
194 $h5 level 5<br/>
195 $h6 level 6
196 </td>
197 <td>
198 = level 1<br/>
199 == level 2<br/>
200 === level 3<br/>
201 ==== level 4<br/>
202 ===== level 5<br/>
203 ====== level 6
204 #info("Closing equal signs are optional.")
205 </td>
206 {/pre}
207 <td>
208 $h1 level 1
209 $h2 level 2
210 $h3 level 3
211 $h4 level 4
212 $h5 level 5
213 $h6 level 6
214 </td>
215 </tr>
216 <tr>
217 {pre}
218 <td>Parametrized headers</td>
219 <td>
220 &lt;h2 class="heading-1"&gt;&lt;span style="color:blue"&gt;header&lt;/span&gt;&lt;/h2&gt;
221 </td>
222 <td>
223 (% style="color:blue" %)<br/>
224 = header
225 </td>
226 {/pre}
227 <td>
228 <h2 class="heading-1" id="Hlevel1"><span style="color:blue">header</span></h2>
229 </td>
230 </tr>
231 <tr>
232 {pre}
233 <td>Headers with wiki syntax</td>
234 <td>$h3 Header with *bold*</td>
235 <td>=== Header with **bold**</td>
236 {/pre}
237 <td>
238 $h3 Header with *bold*
239 </td>
240 </tr>
241 </table>
242
243 1.1 Text Formatting
244
245 #info("New in XWiki Syntax 2.0 over XWiki Syntax 1.0:
246 * Spaces are allowed just after the syntax symbols (for example in XWiki Syntax 1.0, this was not * bold *).
247 * Use double symbols when there was only a single symbol in XWiki Syntax 1.0 so that it's less likely that the user will mistakenly use them in text.
248 * Ability to span several lines (wasn't the case in XWiki Syntax 1.0).")
249
250 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
251 <tr>
252 <th>Feature</th>
253 <th>XWiki Syntax 1.0</th>
254 <th>XWiki Syntax 2.0</th>
255 <th>Result</th>
256 </tr>
257 <tr>
258 {pre}
259 <td>Bold</td>
260 <td>*bold*</td>
261 <td>**bold**</td>
262 {/pre}
263 <td>*bold*</td>
264 </tr>
265 <tr>
266 {pre}
267 <td>Underline</td>
268 <td>__underline___</td>
269 <td>__underline__</td>
270 {/pre}
271 <td>__underline__</td>
272 </tr>
273 <tr>
274 {pre}
275 <td>Italics</td>
276 <td>~~italic~~</td>
277 <td>//italic//</td>
278 {/pre}
279 <td>~~italic~~</td>
280 </tr>
281 <tr>
282 {pre}
283 <td>Striked out</td>
284 <td>--strike--</td>
285 <td>--strike--</td>
286 {/pre}
287 <td>--strike--</td>
288 </tr>
289 <tr>
290 {pre}
291 <td>Monospace</td>
292 <td>&lt;tt&gt;monospace&lt;/tt&gt;</td>
293 #set($dash = "#")
294 <td>${dash}${dash}monospace${dash}${dash}</td>
295 {/pre}
296 <td><tt>monospace</tt></td>
297 </tr>
298 <tr>
299 {pre}
300 <td>Superscript</td>
301 <td>some &lt;sup&gt;superscript&lt;/sup&gt;</td>
302 <td>some ^^superscript^^</td>
303 {/pre}
304 <td>some <sup>superscript</sup></td>
305 </tr>
306 <tr>
307 {pre}
308 <td>Subscript</td>
309 <td>some &lt;sub&gt;subscript&lt;/sub&gt;</td>
310 <td>some ,,subscript,,</td>
311 {/pre}
312 <td>some <sub>subscript</sub></td>
313 </tr>
314 </table>
315
316 1.1 Horizontal Line
317
318 #info("There must be 4 or more dashes.")
319 #info("Note that this is different from Creole where exactly 4 dashes are required.")
320
321 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
322 <tr>
323 <th>Feature</th>
324 <th>XWiki Syntax 1.0</th>
325 <th>XWiki Syntax 2.0</th>
326 <th>Result</th>
327 </tr>
328 <tr>
329 {pre}
330 <td>Simple Horizontal Line</td>
331 <td>----</td>
332 <td>----</td>
333 {/pre}
334 <td><hr/></td>
335 </tr>
336 <tr>
337 {pre}
338 <td>Parametrized Horizontal Line</td>
339 <td>
340 &lt;hr style="color:blue"/&gt;
341 </td>
342 <td>
343 (% style="color:blue" %)<br/>
344 ----
345 </td>
346 {/pre}
347 <td><hr style="color:blue"/></td>
348 </tr>
349 </table>
350
351 1.1 Lists
352
353 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
354 <tr>
355 <th>Feature</th>
356 <th>XWiki Syntax 1.0</th>
357 <th>XWiki Syntax 2.0</th>
358 <th>Result</th>
359 </tr>
360 <tr>
361 {pre}
362 <td>Bulleted list</td>
363 <td>
364 * item 1<br/>
365 ** item 2<br/>
366 *** item 3<br/>
367 * item 4
368 </td>
369 <td>
370 * item 1<br/>
371 ** item 2<br/>
372 *** item 3<br/>
373 * item 4
374 </td>
375 {/pre}
376 <td>
377 * item 1
378 ** item 2
379 *** item 3
380 * item 4
381 </td>
382 </tr>
383 <tr>
384 {pre}
385 <td>Numbered list</td>
386 <td>
387 1. item 1<br/>
388 11. item 2<br/>
389 111. item 3<br/>
390 1. item 4
391 </td>
392 <td>
393 1. item 1<br/>
394 11. item 2<br/>
395 111. item 3<br/>
396 1. item 4
397 </td>
398 {/pre}
399 <td>
400 1. item 1
401 11. item 2
402 111. item 3
403 1. item 4
404 </td>
405 </tr>
406 <tr>
407 {pre}
408 <td>Mixed list</td>
409 <td>
410 1. item 1<br/>
411 1*. item 2<br/>
412 1*. item 3<br/>
413 1. item 4
414 </td>
415 <td>
416 1. item 1<br/>
417 1*. item 2<br/>
418 1*. item 3<br/>
419 1. item 4
420 </td>
421 {/pre}
422 <td>
423 1. item 1
424 1*. item 2
425 1*. item 3
426 1. item 4
427 </td>
428 </tr>
429 <tr>
430 {pre}
431 <td>Square list</td>
432 <td>
433 - item 1<br/>
434 - item 2<br/>
435 </td>
436 <td>
437 (% style="list-style-type: square" %)<br/>
438 * item 1<br/>
439 * item 2<br/>
440 </td>
441 {/pre}
442 <td>
443 - item 1
444 - item 2
445 </td>
446 </tr>
447 <tr>
448 {pre}
449 <td>Disc list</td>
450 <td>
451 &lt;ul style="list-style-type: disc"&gt;<br/>
452 &nbsp;&nbsp;&lt;li&gt;item1&lt;/li&gt;<br/>
453 &nbsp;&nbsp;&lt;li&gt;item2&lt;/li&gt;<br/>
454 &lt;/ul&gt;
455 </td>
456 <td>
457 (% style="list-style-type: disc" %)<br/>
458 * item 1<br/>
459 * item 2<br/>
460 </td>
461 {/pre}
462 <td>
463 <ul style="list-style-type: disc">
464 <li>item1</li>
465 <li>item2</li>
466 </ul>
467 </td>
468 </tr>
469 <tr>
470 {pre}
471 <td>Lowercase Alphabetical list</td>
472 <td>
473 a. item 1<br/>
474 a. item 2<br/>
475 </td>
476 <td>
477 (% style="list-style-type: lower-alpha" %)<br/>
478 * item1<br/>
479 * item2<br/>
480 </td>
481 {/pre}
482 <td>
483 a. item 1
484 a. item 2
485 </td>
486 </tr>
487 <tr>
488 {pre}
489 <td>Uppercase Alphabetical list</td>
490 <td>
491 A. item 1<br/>
492 A. item 2<br/>
493 </td>
494 <td>
495 (% style="list-style-type: upper-alpha" %)<br/>
496 * item1<br/>
497 * item2<br/>
498 </td>
499 {/pre}
500 <td>
501 A. item 1
502 A. item 2
503 </td>
504 </tr>
505 <tr>
506 {pre}
507 <td>Lowercase Roman list</td>
508 <td>
509 i. item 1<br/>
510 i. item 2<br/>
511 </td>
512 <td>
513 (% style="list-style-type: lower-roman" %)<br/>
514 * item1<br/>
515 * item2<br/>
516 </td>
517 {/pre}
518 <td>
519 i. item 1
520 i. item 2
521 </td>
522 </tr>
523 <tr>
524 {pre}
525 <td>Uppercase Roman list</td>
526 <td>
527 I. item 1<br/>
528 I. item 2<br/>
529 </td>
530 <td>
531 (% style="list-style-type: upper-roman" %)<br/>
532 * item1<br/>
533 * item2<br/>
534 </td>
535 {/pre}
536 <td>
537 I. item 1
538 I. item 2
539 </td>
540 </tr>
541 <tr>
542 {pre}
543 <td>Lowercase Greek list</td>
544 <td>
545 g. item 1<br/>
546 g. item 2<br/>
547 </td>
548 <td>
549 (% style="list-style-type: lower-greek" %)<br/>
550 * item1<br/>
551 * item2<br/>
552 </td>
553 {/pre}
554 <td>
555 g. item 1
556 g. item 2
557 </td>
558 </tr>
559 <tr>
560 {pre}
561 <td>Uppercase Greek list</td>
562 <td>
563 G. item 1<br/>
564 G. item 2<br/>
565 </td>
566 <td>
567 (% style="list-style-type: upper-greek" %)<br/>
568 * item1<br/>
569 * item2<br/>
570 </td>
571 {/pre}
572 <td>
573 <ul style="list-style-type: upper-greek">
574 <li>item1</li>
575 <li>item2</li>
576 </ul>
577 </td>
578 </tr>
579 <tr>
580 {pre}
581 <td>Hiragana list</td>
582 <td>
583 h. item 1<br/>
584 h. item 2<br/>
585 </td>
586 <td>
587 (% style="list-style-type: hiragana" %)<br/>
588 * item1<br/>
589 * item2<br/>
590 </td>
591 {/pre}
592 <td>
593 h. item 1
594 h. item 2
595 </td>
596 </tr>
597 <tr>
598 {pre}
599 <td>Hiragana Iroah list</td>
600 <td>
601 H. item 1<br/>
602 H. item 2<br/>
603 </td>
604 <td>
605 (% style="list-style-type: hiragana-iroha" %)<br/>
606 * item1<br/>
607 * item2<br/>
608 </td>
609 {/pre}
610 <td>
611 H. item 1
612 H. item 2
613 </td>
614 </tr>
615 <tr>
616 {pre}
617 <td>Katakana list</td>
618 <td>
619 k. item 1<br/>
620 k. item 2<br/>
621 </td>
622 <td>
623
624 (% style="list-style-type: katakana" %)<br/>
625 * item1<br/>
626 * item2<br/>
627 </td>
628 {/pre}
629 <td>
630 k. item 1
631 k. item 2
632 </td>
633 </tr>
634 <tr>
635 {pre}
636 <td>Katakana Iroha list</td>
637 <td>
638 K. item 1<br/>
639 K. item 2<br/>
640 </td>
641 <td>
642 (% style="list-style-type: katakana-iroha" %)<br/>
643 * item1<br/>
644 * item2<br/>
645 </td>
646 {/pre}
647 <td>
648 K. item 1
649 K. item 2
650 </td>
651 </tr>
652 <tr>
653 {pre}
654 <td>Armenian list</td>
655 <td>
656 &lt;ul style="list-style-type: armenian"&gt;<br/>
657 &nbsp;&nbsp;&lt;li&gt;item1&lt;/li&gt;<br/>
658 &nbsp;&nbsp;&lt;li&gt;item2&lt;/li&gt;<br/>
659 &lt;/ul&gt;
660 </td>
661 <td>
662 (% style="list-style-type: armenian" %)<br/>
663 * item1<br/>
664 * item2<br/>
665 </td>
666 {/pre}
667 <td>
668 <ul style="list-style-type: armenian">
669 <li>item1</li>
670 <li>item2</li>
671 </ul>
672 </td>
673 </tr>
674 <tr>
675 {pre}
676 <td>Hebrew list</td>
677 <td>
678 j. item1<br/>
679 j. item2<br/>
680 </td>
681 <td>
682 (% style="list-style-type: hebrew" %)<br/>
683 * item1<br/>
684 * item2<br/>
685 </td>
686 {/pre}
687 <td>
688 <ul style="list-style-type: hebrew">
689 <li>item1</li>
690 <li>item2</li>
691 </ul>
692 </td>
693 </tr>
694 <tr>
695 {pre}
696 <td>Georgian list</td>
697 <td>
698 &lt;ul style="list-style-type: georgian"&gt;<br/>
699 &nbsp;&nbsp;&lt;li&gt;item1&lt;/li&gt;<br/>
700 &nbsp;&nbsp;&lt;li&gt;item2&lt;/li&gt;<br/>
701 &lt;/ul&gt;
702 </td>
703 <td>
704 (% style="list-style-type: georgian" %)<br/>
705 * item1<br/>
706 * item2<br/>
707 </td>
708 {/pre}
709 <td>
710 <ul style="list-style-type: georgian">
711 <li>item1</li>
712 <li>item2</li>
713 </ul>
714 </td>
715 </tr>
716 <tr>
717 {pre}
718 <td>CJK ideographic list</td>
719 <td>
720 &lt;ul style="list-style-type: cjk-ideographic"&gt;<br/>
721 &nbsp;&nbsp;&lt;li&gt;item1&lt;/li&gt;<br/>
722 &nbsp;&nbsp;&lt;li&gt;item2&lt;/li&gt;<br/>
723 &lt;/ul&gt;
724 </td>
725 <td>
726 (% style="list-style-type: cjk-ideographic" %)<br/>
727 * item1<br/>
728 * item2<br/>
729 </td>
730 {/pre}
731 <td>
732 <ul style="list-style-type: cjk-ideographic">
733 <li>item1</li>
734 <li>item2</li>
735 </ul>
736 </td>
737 </tr>
738 </table>
739
740 1.1 Definition Lists
741
742 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
743 <tr>
744 <th>Feature</th>
745 <th>XWiki Syntax 1.0</th>
746 <th>XWiki Syntax 2.0</th>
747 <th>Result</th>
748 </tr>
749 <tr>
750 {pre}
751 <td>Standard definition</td>
752 <td>
753 &lt;dl&gt;<br/>
754 &nbsp;&nbsp;&lt;dt&gt;term&lt;/dt&gt;<br/>
755 &nbsp;&nbsp;&lt;dd&gt;definition&lt;/dd&gt;<br/>
756 &lt;/dl&gt;
757 </td>
758 <td>
759 ; term<br/>
760 : definition
761 </td>
762 {/pre}
763 <td>
764 <dl>
765 <dt>term</dt>
766 <dd>definition</dd>
767 </dl>
768 </td>
769 </tr>
770 <tr>
771 {pre}
772 <td>Nested definitions</td>
773 <td>
774 &lt;dl&gt;<br/>
775 &nbsp;&nbsp;&lt;dt&gt;term1&lt;/dt&gt;<br/>
776 &nbsp;&nbsp;&lt;dd&gt;definition1<br/>
777 &nbsp;&nbsp;&nbsp;&nbsp;&lt;dl&gt;<br/>
778 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;dt&gt;term2&lt;/dt&gt;<br/>
779 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;dd&gt;definition2&lt;/dd&gt;<br/>
780 &nbsp;&nbsp;&nbsp;&nbsp;&lt;/dl&gt;<br/>
781 &nbsp;&nbsp;&lt;/dd&gt;<br/>
782 &lt;/dl&gt;
783 </td>
784 <td>
785 ; term1<br/>
786 : definition1<br/>
787 :; term2<br/>
788 :: definition2
789 </td>
790 {/pre}
791 <td>
792 <dl>
793 <dt>term1</dt>
794 <dd>definition1
795 <dl>
796 <dt>term2</dt>
797 <dd>definition2</dd>
798 </dl>
799 </dd>
800 </dl>
801 </td>
802 </tr>
803 <tr>
804 {pre}
805 <td>Parametrized definition</td>
806 <td>
807 &lt;dl style="color:blue"&gt;<br/>
808 &nbsp;&nbsp;&lt;dt&gt;term&lt;/dt&gt;<br/>
809 &nbsp;&nbsp;&lt;dd&gt;definition&lt;/dd&gt;<br/>
810 &lt;/dl&gt;
811 </td>
812 </td>
813 <td>
814 (% style="color:blue" %)<br/>
815 ; term<br/>
816 : definition
817 </td>
818 {/pre}
819 <td>
820 <dl style="color:blue">
821 <dt>term</dt>
822 <dd>definition</dd>
823 </dl>
824 </td>
825 </tr>
826 </table>
827
828 1.1 New Line/Line breaks
829
830 A new line is a carriage return. A line break is a forced new line that can appear anywhere in the text.
831
832 #info("In XWiki Syntax 2.0 new lines are honored which is not the case in XWiki Syntax 1.0 and in Creole syntax.")
833
834 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
835 <tr>
836 <th>Feature</th>
837 <th>XWiki Syntax 1.0</th>
838 <th>XWiki Syntax 2.0</th>
839 <th>Result XWiki Syntax 1.0</th>
840
841 <th>Result XWiki Syntax 2.0</th>
842 </tr>
843 <tr>
844 {pre}
845 <td>Line break</td>
846 <td>Line&#92;&#92New line</td>
847 <td>Line&#92;&#92New line</td>
848 {/pre}
849 <td>Line\\New line</td>
850 <td>Line\\New line</td>
851 </tr>
852 <tr>
853
854 {pre}
855 <td>New line</td>
856 <td>Line<br/>New line</td>
857 <td>Line<br/>New line</td>
858 {/pre}
859 <td>Line New line</td>
860 <td>Line<br/>New line</td>
861 </tr>
862 </table>
863
864 1.1 Links
865
866 #*
867 TODO: In XWiki Syntax 2.0 it's possible to configure how links are displayed when they don't have an explicit label specified.
868 Give a link to how to configure this feature
869 *#
870
871 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
872 <tr>
873 <th>Feature</th>
874 <th>XWiki Syntax 1.0</th>
875 <th>XWiki Syntax 2.0</th>
876 <th>Result XWiki Syntax 1.0</th>
877 <th>Result XWiki Syntax 2.0</th>
878 </tr>
879 <tr>
880 {pre}
881 <td>Link to a page in the current Space</td>
882 <td>[WebHome]</td>
883 <td>[[WebHome]]</td>
884 {/pre}
885 <td>
886 <span class="wikilink"><a href="/xwiki/bin/view/Main/">Web Home</a></span>
887 </td>
888 <td>
889 <span class="wikilink"><a href="/xwiki/bin/view/Main/">WebHome</a></span>
890 </td>
891 </tr>
892 <tr>
893 {pre}
894 <td>Link with a label</td>
895 <td>[label>WebHome]</td>
896 <td>[[label>>WebHome]]</td>
897 {/pre}
898 <td>
899 <span class="wikilink"><a href="/xwiki/bin/view/Main/">label</a></span>
900 </td>
901 <td>
902 <span class="wikilink"><a href="/xwiki/bin/view/Main/">label</a></span>
903 </td>
904 </tr>
905 <tr>
906 {pre}
907 <td>Link to a page with the space specified</td>
908 <td>[Main.WebHome]</td>
909 <td>[[Main.WebHome]]</td>
910 {/pre}
911 <td>
912 <span class="wikilink"><a href="/xwiki/bin/view/Main/">Web Home</a></span>
913 </td>
914 <td>
915 <span class="wikilink"><a href="/xwiki/bin/view/Main/">WebHome</a></span>
916 </td>
917 </tr>
918 <tr>
919 {pre}
920 <td>Link to a subwiki</td>
921 <td>[subwiki:Main.WebHome]</td>
922 <td>[[subwiki:Main.WebHome]]</td>
923 {/pre}
924 <td>
925 <span class="wikilink"><a href="/xwiki/bin/view/Main/">Web Home</a></span>
926 </td>
927 <td>
928 <span class="wikilink"><a href="/xwiki/bin/view/Main/">WebHome</a></span>
929 </td>
930 </tr>
931 <tr>
932 {pre}
933 <td>Link that opens in a new page</td>
934 <td>[label>WebHome>_blank]</td>
935 <td>[[label>>WebHome||target="_blank"]]</td>
936 {/pre}
937 <td>
938 <span class="wikilink"><a href="/xwiki/bin/view/Main/" rel="__blank">label</a></span>
939 </td>
940 <td>
941 <span class="wikilink"><a href="/xwiki/bin/view/Main/" rel="__blank">label</a></span>
942 </td>
943 </tr>
944 <tr>
945 {pre}
946 <td>Link to a URL directly in the text</td>
947 <td>This is a URL: http://xwiki.org</td>
948 <td>This is a URL: http://xwiki.org</td>
949 {/pre}
950 <td>
951 This is a URL: <span class="wikiexternallink"><a href="http://www.xwiki.org">&#104;ttp://www.xwiki.org</a></span>
952 </td>
953 <td>
954 This is a URL: <span class="wikiexternallink"><a href="http://www.xwiki.org">&#104;ttp://www.xwiki.org</a></span>
955 </td>
956 </tr>
957 <tr>
958 {pre}
959 <td>Link to a URL</td>
960 <td>[http://xwiki.org]</td>
961 <td>[[http://xwiki.org]]</td>
962 {/pre}
963 <td>
964 <span class="wikiexternallink"><a href="http://www.xwiki.org">&#104;ttp://www.xwiki.org</a></span>
965 </td>
966 <td>
967 <span class="wikiexternallink"><a href="http://www.xwiki.org">&#104;ttp://www.xwiki.org</a></span>
968 </td>
969 </tr>
970 <tr>
971 {pre}
972 <td>Link to a URL with a label</td>
973 <td>[XWiki>http://xwiki.org]</td>
974 <td>[[XWiki>>http://xwiki.org]]</td>
975 {/pre}
976 <td>
977 <span class="wikiexternallink"><a href="http://www.xwiki.org">XWiki</a></span>
978 </td>
979 <td>
980 <span class="wikiexternallink"><a href="http://www.xwiki.org">XWiki</a></span>
981 </td>
982 </tr>
983 <tr>
984 {pre}
985 <td>Link to an email</td>
986 <td>[email>mailto:john@smith.net]</td>
987 <td>[[email>>mailto:john@smith.net]]</td>
988 {/pre}
989 <td>
990 <span class="wikiexternallink"><a href="mailto:john&@smith.com">email</a></span>
991 </td>
992 <td>
993 <span class="wikiexternallink"><a href="mailto:john&@smith.com">email</a></span>
994
995 </td>
996 </tr>
997 <tr>
998 {pre}
999 <td>Image Link</td>
1000 <td>&lt;a href="\$xwiki.getURL("Space1.Page1")"&gt;{image:img.png|document=Space2.Page2}&lt;/a&gt;</td>
1001 <td>[[image:Space2.Page2@img.png>>Space1.Page1]] #info("Wiki syntax is supported inside link labels")</td>
1002 {/pre}
1003 <td>
1004 <a href="/xwiki/bin/view/Main/">{image:img.png}</a>
1005 </td>
1006 <td>
1007 <a href="/xwiki/bin/view/Main/">{image:img.png}</a>
1008 </td>
1009 </tr>
1010 <tr>
1011 <td>Link to attachment</td>
1012 <td>#info("See [Attach Macro>code:Macros.AttachMacro] for details")
1013 {pre}
1014 {attach:text|file=img.png}</td>
1015 <td>[[text>>attach:img.png]]</td>
1016 {/pre}
1017 <td>
1018 {attach:text|file=img.png}</td>
1019 </td>
1020 <td>
1021 {attach:text|file=img.png}</td>
1022 </td>
1023 </tr>
1024 </table>
1025
1026 1.1.1 XWiki Syntax 1.0 Link Specification
1027
1028 The full format of a link is {code}(alias[|&gt;])+(link)(@interWikiAlias)+([|&gt;]target)+{code}
1029 * <tt>alias</tt>: An optional string which will be displayed to the user as the link name when rendered. Example: "My Page".
1030 * <tt>link</tt>: The full link reference using the following syntax: {code}(virtualWikiAlias:)+(space.)+(reference)(?queryString)+(#anchor)+{code}
1031 * Note that either the <tt>link</tt> or the <tt>alias</tt> must be specified.
1032 ** <tt>virtualWikiAlias</tt>: An optional string containing the name of a virtual wiki. The link will point to a page inside that virtual wiki. Example: "mywiki".
1033 ** <tt>space</tt>: An optional Wiki Space name. If not space is specified the current space is used. Example: "Main".
1034 ** <tt>reference</tt>: The link reference. This can be either a URI in the form <tt>protocol:path</tt> (example: "http://xwiki.org", "mailto:john@smith.com") or a wiki page name (example: "WebHome").
1035 ** <tt>queryString</tt>: An optional query string for specifying parameters that will be used in the rendered URL. Example: "mydata1=5&mydata2=Hello".
1036 ** <tt>anchor</tt>: An optional anchor name pointing to an anchor defined in the referenced link. Note that in XWiki anchors are automatically created for titles. Example: "TableOfContentAnchor".
1037 * <tt>interWikiAlias</tt>: An optional [Inter Wiki>http://en.wikipedia.org/wiki/InterWiki] alias as defined in the InterWiki Map (see the [Admin Guide>http://platform.xwiki.org/xwiki/bin/view/AdminGuide/]). Example: "wikipedia"
1038 * <tt>target</tt>: An optional string corresponding to the HTML <tt>target</tt> attribute for a HTML <tt>a</tt> link element. This element is used when rendering the link. It defaults to opening the link in the current page. Examples: "_self", "_blank"
1039
1040 1.1.1 XWiki Syntax 2.0 Link Specification
1041
1042 The full format of a link is {code}(label>>)?(link)(||parameters)*{code}
1043 * <tt>label</tt>: the link label, can contain wiki syntax
1044 * <tt>link</tt>: the link target, i.e. where to go when the link is clicked. It has a similar format than in the XWiki 1.0 syntax and it can also contain 2 types of URIs: <tt>mailto:</tt> and <tt>attach:</tt> for linking to an email and linking to an attachment respectively.
1045 * <tt>parameters</tt>: An optional list of parameters passed to the link. For example the <tt>target</tt> element from XWiki Syntax 1.0 can be passed as a parameter.
1046
1047 1.1 Tables
1048
1049 Allows to easily create content in table format. It also support parameters for table, row or cell in XWiki Syntax 2.0.
1050
1051 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1052 <tr>
1053 <th>Feature</th>
1054 <th>XWiki Syntax 1.0</th>
1055 <th>XWiki Syntax 2.0</th>
1056 <th>Result XWiki Syntax 1.0</th>
1057 <th>Result XWiki Syntax 2.0</th>
1058 </tr>
1059 <tr>
1060 {pre}
1061 <td>Standard table</td>
1062 <td>
1063 {table}<br/>
1064 Title 1 | Title 2<br/>
1065 Word 1 | Word 2<br/>
1066 {table}
1067 </td>
1068 <td>
1069 |=Title 1|=Title 2<br/>
1070 |Word 1|Word 2<br/>
1071 </td>
1072 {/pre}
1073 <td>
1074 <table class="wiki-table" border="0" cellpadding="0" cellspacing="0"><tbody><tr><th>Title 1</th><th>Title 2</th></tr><tr class="table-odd"><td>Word 1</td><td>Word 2</td></tr></tbody></table>
1075 </td>
1076 <td>
1077 <table><tbody><tr><th>Title 1</th><th>Title 2</th></tr><tr><td>Word 1</td><td>Word 2</td></tr></tbody></table>
1078 </td>
1079 </tr>
1080 <tr>
1081 {pre}
1082 <td>Parametrized table</td>
1083 <td>
1084 &lt;table&nbsp;style=&quot;background-color:red;align:center&quot;&gt;<br/>
1085 &nbsp;&nbsp;&lt;tbody&gt;<br/>
1086 &nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br/>
1087 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;th&gt;Title&nbsp;1&lt;/th&gt;<br/>
1088 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;th&nbsp;style=&quot;background-color:yellow&quot;&gt;Title&nbsp;2&lt;/th&gt;<br/>
1089
1090 &nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br/>
1091 &nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br/>
1092 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Word&nbsp;1&lt;/td&gt;<br/>
1093 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Word&nbsp;2&lt;/td&gt;<br/>
1094 &nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br/>
1095 &nbsp;&nbsp;&lt;/tbody&gt;<br/>
1096 &lt;/table&gt;
1097 </td>
1098 <td>
1099 (% style="background-color:red;align=center" %)<br/>
1100 |=Title 1|=(% style="background-color:yellow" %)Title 2<br/>
1101 |Word 1|Word 2<br/>
1102 </td>
1103 {/pre}
1104 <td>
1105 <table style="background-color:red;align:center"><tbody><tr><th>Title 1</th><th style="background-color:yellow">Title 2</th></tr><tr><td>Word 1</td><td>Word 2</td></tr></tbody></table>
1106 </td>
1107 <td>
1108 <table style="background-color:red;align:center"><tbody><tr><th>Title 1</th><th style="background-color:yellow">Title 2</th></tr><tr><td>Word 1</td><td>Word 2</td></tr></tbody></table>
1109 </td>
1110 </tr>
1111 <tr>
1112 {pre}
1113 <td>Filterable Sortable table</td>
1114 <td>
1115 &lt;table id=&quot;tableid&quot; class=&quot;grid sortable filterable doOddEven&quot;&gt;<br/>
1116 &nbsp;&nbsp;&lt;tr class=&quot;sortHeader&quot;&gt;<br/>
1117 &nbsp;&nbsp;&nbsp; &lt;th&gt;Title1&lt;/th&gt;<br/>
1118 &nbsp;&nbsp;&nbsp; &lt;th&gt;Title2&lt;/th&gt;<br/>
1119 &nbsp;&nbsp;&lt;/tr&gt;<br/>
1120 &nbsp;&nbsp;&lt;tr&gt;<br/>
1121 &nbsp;&nbsp;&nbsp;&lt;td&gt;Cell11&lt;/td&gt;<br/>
1122 &nbsp;&nbsp;&nbsp;&lt;td&gt;Cell12&lt;/td&gt;<br/>
1123 &nbsp;&nbsp;&lt;/tr&gt;<br/>
1124 &nbsp;&nbsp;&lt;tr&gt;<br/>
1125 &nbsp;&nbsp;&nbsp;&lt;td&gt;Cell21&lt;/td&gt;<br/>
1126 &nbsp;&nbsp;&nbsp;&lt;td&gt;Cell22&lt;/td&gt;<br/>
1127 &nbsp;&nbsp;&lt;/tr&gt;<br/>
1128 &lt;/table&gt;<br/>
1129 </td>
1130 <td>
1131 #warning("Not implemented yet")
1132 </td>
1133 <td>
1134 <table id="MovieTable" class="grid sortable filterable doOddEven">
1135 <tr class="sortHeader">
1136 <th>Title1</th>
1137 <th>Title2</th>
1138 </tr>
1139 <tr>
1140 <td>Cell11</td>
1141 <td>Cell12</td>
1142 </tr>
1143 <tr>
1144 <td>Cell21</td>
1145 <td>Cell22</td>
1146 </tr>
1147 </table>
1148 </td>
1149 <td>
1150 #warning("Not implemented yet")
1151 </td>
1152 {/pre}
1153 </tr>
1154 </table>
1155
1156 1.1 Images
1157
1158 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1159 <tr>
1160 <th>Feature</th>
1161 <th>XWiki Syntax 1.0</th>
1162 <th>XWiki Syntax 2.0</th>
1163 <th>Result</th>
1164 </tr>
1165 <tr>
1166 <td>Image from attachment in current page</td>
1167 <td>
1168 #info("See [Image Macro>code:Macros.ImageMacro] for details")
1169 {pre}
1170 {image:img.png}
1171 </td>
1172 <td>image:img.png</td>
1173 {/pre}
1174 <td>
1175 {image:img.png}
1176 </td>
1177 </tr>
1178 <tr>
1179 <td>Image from attachment in another document</td>
1180 <td>
1181 {pre}
1182 {image:img.png|document=Space.Page}
1183 </td>
1184 <td>image:Space.Page@img.png</td>
1185 {/pre}
1186 <td>
1187 {image:img.png}
1188 </td>
1189 </tr>
1190 <tr>
1191 <td>Image with parameters</td>
1192 <td>
1193 {pre}
1194 {image:img.png|width=25|height=25}
1195 </td>
1196 <td>[[image:img.png||width="25" height="25"]]</td>
1197 {/pre}
1198 <td>
1199 {image:img.png|width=25|height=25}
1200 </td>
1201 </tr>
1202 <tr>
1203 <td>Images located at URL</td>
1204 <td>
1205 {pre}
1206 http://some/url/img.png
1207 </td>
1208 <td>image:http://some/url/img.png</td>
1209 {/pre}
1210 <td>
1211 {image:img.png}
1212 </td>
1213 </tr>
1214 </table>
1215
1216 1.1 Verbatim
1217
1218 Allow to enter content that will not be formatted (in other words the wiki syntax will not be taken into account).
1219
1220 #info("In XWiki Syntax 1.0 the [Pre macro>code:Macros.PreMacro] only preserves wiki syntax and Radeox macros. However HTML snippets and Groovy/Velocity scripts are still executed.")
1221
1222 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1223 <tr>
1224 <th>Feature</th>
1225 <th>XWiki Syntax 1.0</th>
1226 <th>XWiki Syntax 2.0</th>
1227 <th>Result XWiki Syntax 1.0</th>
1228 <th>Result XWiki Syntax 2.0</th>
1229 </tr>
1230 <tr>
1231 <td>Verbatim inline</td>
1232 <td>
1233 Some verbatim \{pre\}\*\[not rendered\]\*\{/pre\} content
1234 </td>
1235 {pre}
1236 <td>
1237 Some verbatim {{{**[[not rendered]]**}}} content
1238 </td>
1239 {/pre}
1240 <td>
1241 Some verbatim \*\[not rendered\]\* content
1242 </td>
1243 <td>
1244 Some verbatim \*\*\[\[not rendered\]\]\*\* content
1245 </td>
1246 </tr>
1247 <tr>
1248 <td>Verbatim block</td>
1249 <td>
1250 \{pre\}
1251 multi line<br/>
1252 \*verbatim\*<br/>
1253 content<br/>
1254 \{/pre\}
1255 #info("It's also possible to use the [Code macro>code:Macros.CodeMacro] but it displays its content in a box by default.")
1256 </td>
1257 <td>
1258 {{{<br/>
1259 multi line<br/>
1260 \*\*verbatim\*\*<br/>
1261 content<br/>
1262 }}}
1263 </td>
1264 <td>
1265 multi line<br/>
1266 \*verbatim\*<br/>
1267 content
1268 </td>
1269 <td>
1270 multi line<br/>
1271 \*\*verbatim\*\*<br/>
1272 content
1273 </td>
1274 </tr>
1275 </table>
1276
1277 1.1 Quotations
1278
1279 Allows to quote some text.
1280
1281 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1282 <tr>
1283 <th>Feature</th>
1284 <th>XWiki Syntax 1.0</th>
1285 <th>XWiki Syntax 2.0</th>
1286 <th>Result</th>
1287 </tr>
1288 <tr>
1289 {pre}
1290 <td>Simple quote</td>
1291 <td>
1292 &lt;blockquote&gt;john said this&lt;/blockquote&gt;<br/>
1293 I said ok
1294 </td>
1295 <td>
1296 > john said this<br/>
1297 I said ok
1298 </td>
1299 {/pre}
1300 <td>
1301 <blockquote>john said this</blockquote>
1302 I said ok
1303 </td>
1304 </tr>
1305 <tr>
1306 {pre}
1307 <td>Nested quotes</td>
1308 <td>
1309 &lt;blockquote&gt;john said this<br/>
1310 &nbsp;&nbsp;&lt;blockquote&gt;marie answered that&lt;/blockquote&gt;<br/>
1311 &lt;/blockquote&gt;
1312 </td>
1313 <td>
1314 > john said this<br/>
1315 >> marie answered that<br/>
1316 I said ok
1317 </td>
1318 {/pre}
1319 <td>
1320 <blockquote>john said this<blockquote>marie answered that</blockquote></blockquote>
1321 I said ok
1322 </td>
1323 </tr>
1324 </table>
1325
1326 1.1 Escapes
1327
1328 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1329 <tr>
1330 <th>Feature</th>
1331 <th>XWiki Syntax 1.0</th>
1332 <th>XWiki Syntax 2.0</th>
1333 <th>Result XWiki Syntax 1.0</th>
1334 <th>Result XWiki Syntax 2.0</th>
1335 </tr>
1336 <tr>
1337 {pre}
1338 <td>Escape a character</td>
1339 <td>This is not a \[link\]</td>
1340 <td>
1341 This is not a ~[~[link~]~]
1342 #info("To enter a ~ character use a double escape: ~~")
1343 </td>
1344 {/pre}
1345 <td>This is not a \[link\]</td>
1346 <td>This is not a \[\[link\]\]</td>
1347 </tr>
1348 </table>
1349
1350 1.1 Macros
1351
1352 There are 2 kinds of macros in XWiki syntax 1.0:
1353 * Velocity macros (called using the <tt>\#macroname(param1 ... paramN)</tt> syntax)
1354 * Radeox macros (called using the <tt>\{macroname:param1=value1|...|paramN=valueN\}</tt> syntax)
1355
1356 There are also 2 kinds of macros in XWiki Syntax 2.0:
1357 * Velocity macros (called using the <tt>\#macroname(param1 ... paramN)</tt> syntax)
1358 * XWiki macros (called using the <tt>\{\{macroname param1="value1" ... paramN="valueN"\}\}</tt> syntax)
1359
1360 #info("The Radeox macros cannot be used in XWiki Syntax 2.0. Thus they have been rewritten as XWiki macros.")
1361
1362 #info("For the full list of available macros check the [Macro Reference page>code:Macros.WebHome].")
1363
1364 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1365 <tr>
1366 <th>Feature</th>
1367 <th>XWiki Syntax 1.0</th>
1368 <th>XWiki Syntax 2.0</th>
1369 <th>Result</th>
1370 </tr>
1371 <tr>
1372 <td>Velocity Macro</td>
1373 <td>
1374 \#info("Some info text")
1375 </td>
1376 <td>
1377 \{\{velocity\}\}
1378 \#info("Some info text")
1379 \{\{/velocity\}\}
1380 </td>
1381 <td>#info("Some info text")</td>
1382 </tr>
1383 <tr>
1384 <td>Radeox Macro/XWiki Macros</td>
1385 <td>
1386 \{code:java\}
1387 content
1388 \{code\}
1389 </td>
1390 <td>
1391 \{\{velocity context="new"\}\}
1392 content
1393 \{\{/velocity\}\}
1394 </td>
1395 <td>N/A (depends on the macro)</td>
1396 </tr>
1397 </table>
1398
1399 1.1 HTML
1400
1401 #info("In XWiki Syntax 2.0 HTML or XHTML must be entered by using the HTML macro whereas in XWiki Syntax 1.0 it's possible to enter HTML directly in the text")
1402
1403 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1404 <tr>
1405 <th>XWiki Syntax 1.0</th>
1406 <th>XWiki Syntax 2.0</th>
1407 <th>Result</th>
1408 </tr>
1409 <tr>
1410 {pre}
1411 <td>&lt;b&gt;bold&lt;/b&gt;</td>
1412 <td>
1413 {{html}}<br/>
1414 &lt;b&gt;bold&lt;/b&gt;<br/>
1415 {{/html}}
1416 </td>
1417 {/pre}
1418 <td><b>bold</b></td>
1419 </tr>
1420 </table>
1421
1422 #info("In XWiki Syntax 2.0, by default the HTML macro understands wiki syntax. To prevent this, use {{html wiki=\"false\"}}")
1423
1424 1.1 Velocity/Groovy Scripts
1425
1426 #info("In XWiki Syntax 1.0 it was possible to enter Velocity scripts anywhere directly in the page. This lead to issues for example when the user was involuntarily entering Velocity content. It was also performance hungry for pages not requiring Velocity content. There were several other technical limitations. Thus in XWiki Syntax 2.0 Velocity scripts must be entered using the <tt>velocity</tt> macro. Same goes for entering Groovy scripts.")
1427
1428 <table class="wiki-table" border="1" cellspacing="0" cellpadding="2" width="80%">
1429 <tr>
1430 <th>Feature</th>
1431 <th>XWiki Syntax 1.0</th>
1432 <th>XWiki Syntax 2.0</th>
1433 </tr>
1434 <tr>
1435 <td>Velocity script</td>
1436 <td>\#set (\$var = "whatever")</td>
1437 <td>
1438 \{\{velocity\}\}<br/>
1439 \#set (\$var = "whatever")<br/>
1440 \{\{/velocity\}\}
1441 </td>
1442 </tr>
1443 <tr>
1444 <td>Groovy script</td>
1445 <td>
1446 \<\%<br/>
1447 def var = "whatever"<br/>
1448 \%\>
1449 </td>
1450 <td>
1451 \{\{groovy\}\}<br/>
1452 def var = "whatever"<br/>
1453 \{\{/groovy\}\}
1454 </td>
1455 </tr>
1456 </table>
1457
1458 1.1 Other syntaxes
1459
1460 The following other syntaxes are implemented in XWiki Enterprise 1.6 and above:
1461 * [JSPWiki>http://www.jspwiki.org/wiki/TextFormattingRules]
1462 * [MediaWiki>http://en.wikipedia.org/wiki/Help:Editing]
1463 * [Confluence>http://confluence.atlassian.com/display/CONF20/Confluence+Notation+Guide+Overview]
1464 * [TWiki>http://twiki.org/cgi-bin/view/TWiki/WikiSyntax]
1465 * [Creole 1.0>http://www.wikicreole.org/wiki/Creole1.0]
1466 * [XHTML 1.0>http://www.w3.org/TR/xhtml1/]
1467
1468 #warning("The implementation for these syntaxes is not fully finished yet. For example support for links is not working yet. We also need to define if we want to extend the original syntaxes to support XWiki-specific features like ability to link to another sub-wiki. This is planned for XWiki Enterprise 1.8 and beyond.")

Get Connected