Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EDT:How to Create/Edit Wiki pages

Revision as of 11:47, 26 October 2011 by Tdramsey.us.ibm.com (Talk | contribs)

To make a new page:

  1. Enter a new URL in your browser and include the "EDT:" prefix. For example, wiki.eclipse.org/EDT:MyNewPage.
    You'll be told that there's no text in the page. Click on the Edit this page link or the Edit tab.
  2. Using the Wikitext editor (click on Wikitext in the toolbar), place this line at the bottom of your page (with double brackets)
         EDT:Category
    The category may not display correctly until you save your work. 

Marking the page causes includes your contribution on the Category:EDT page. This way we can make sure pages are appropriately included in the sidebar navigation of the wiki. 


To include code snippets:

You can set code examples to monospace by clicking WikiText and then using the following tags:

  • For inline examples such as x = y, use this tagging:
       such as <code>x = y</code>
  • For larger examples, use this tagging:

        <pre>
           
x = y;

           y = z;
        </pre>




To learn more about editing Wiki pages:

Back to the top