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

Difference between revisions of "EDT:How to Create/Edit Wiki pages"

Line 1: Line 1:
See [[:Category:EDT]] if you're adding pages to the EDT wiki, especially the part about how to indicate that your page is part of the EDT category.
+
To make a new page:  
  
To make a new page, enter the URL for your new page in your browser.  If you want it to be in the EDT category, include the "EDT:" prefix. For example, [http://wiki.eclipse.org/EDT:My_EDT_wiki_page http://wiki.eclipse.org/EDT:My_EDT_wiki_page]. You'll be told that there's no text in the page yet, as if the page already existed but was blank. Click on the Edit link and create your masterpiece.
+
#Enter a&nbsp;new URL in your browser and include the "EDT:" prefix. For example, http://wiki.eclipse.org/'''EDT:'''My_New_page. <br><br>You'll be told that there's no text in the page yet, as if the page already existed but was blank. Click on the '''Edit '''link and write your masterpiece.&nbsp; <br>
 +
#Click '''Wikitext'''. <br>
 +
#Place the following detail at the bottom of your page, with double left brackets in front and double right brackets in back:&nbsp;&nbsp;<br><br>&nbsp;&nbsp;&nbsp;&nbsp; EDT:Category <br>
 +
#To return to the Rich Editor, click '''Wikitext''' again.&nbsp; You might not see the category displayed correctly until you save your work.
  
Handy links to learn about editing these Wiki pages
+
<br>Doing steps 2-3 causes the following page&nbsp;to include&nbsp;your contribution:&nbsp; [[:Category:EDT]].
* [http://en.wikipedia.org/wiki/Help:Wiki_markup Wiki Markup]
+
 
* [http://en.wikipedia.org/wiki/Wikipedia:Tutorial Wikipedia Tutorial]
+
To learn about editing the Wiki pages:
* [http://en.wikipedia.org/wiki/Wikipedia:Cheatsheet Wikipedia Cheatsheet]
+
 
 +
*[http://en.wikipedia.org/wiki/Help:Wiki_markup Wiki Markup]  
 +
*[http://en.wikipedia.org/wiki/Wikipedia:Tutorial Wikipedia Tutorial]  
 +
*[http://en.wikipedia.org/wiki/Wikipedia:Cheatsheet Wikipedia Cheatsheet]  
 +
*[http://wiki.eclipse.org/Eclipse_Doc_Style_Guide Eclipse Doc Style Guide]
 +
 
 +
<br>Note that you can set code examples to monospace by clicking '''WikiText''' and using the following tags:
 +
 
 +
*For inline examples such as x = y, use this tagging:<br><br>&nbsp;&nbsp;&nbsp;&nbsp; such as &lt;code&gt;<code>x = y&lt;/code&gt;</code>
 +
 
 +
For larger examples, use this tagging:
 +
 
 +
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;pre&gt;
 +
 
 +
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x = y;
 +
 
 +
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; y = z;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/pre&gt;<br>
  
 
[[Category:EDT]]
 
[[Category:EDT]]

Revision as of 11:16, 26 October 2011

To make a new page:

  1. Enter a new URL in your browser and include the "EDT:" prefix. For example, http://wiki.eclipse.org/EDT:My_New_page.

    You'll be told that there's no text in the page yet, as if the page already existed but was blank. Click on the Edit link and write your masterpiece. 
  2. Click Wikitext.
  3. Place the following detail at the bottom of your page, with double left brackets in front and double right brackets in back:  

         EDT:Category
  4. To return to the Rich Editor, click Wikitext again.  You might not see the category displayed correctly until you save your work.


Doing steps 2-3 causes the following page to include your contribution:  Category:EDT.

To learn about editing the Wiki pages:


Note that you can set code examples to monospace by clicking WikiText and 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>

Back to the top