Help:Editing
From Eclipsepedia
See the MediaWiki editing help.
Here is a complete list of the templates available on the Eclipse wiki, just waiting yours to add up!
If you have to write source code in Java, you can wrap code inside source tags <source lang="java"></source>:
| Language | Source | Result |
|---|---|---|
| Java | <source lang="java">
public static void main(String args[]) {
System.out.println("Hello world");
}
</source>
| public static void main(String args[]) { System.out.println("Hello world"); } |
| XML | <source lang="xml">
<extension point="org.eclipse.stp.bpmn.diagram.EAnnotationDecorator">
<decorator
class="org.eclipse.stp.bpmn.sample.annotationdecoration.AnnotationDecorator"
source="textAnnotationSource"/>
</extension>
</source>
| <extension point="org.eclipse.stp.bpmn.diagram.EAnnotationDecorator"> <decorator class="org.eclipse.stp.bpmn.sample.annotationdecoration.AnnotationDecorator" source="textAnnotationSource"/> </extension> |
You can use it for any other language supported by GeShi.

