-

This site is deprecated and will be decommissioned shortly. For current information regarding HPC visit our new site: hpc.njit.edu

Difference between pages "WikiEditingHelp" and "WikiTextFormatting"

From NJIT-ARCS HPC Wiki
(Difference between pages)
Jump to: navigation, search
(Importing text file)
 
(Importing text file)
 
Line 1: Line 1:
  
An easy way to start contributing to this wiki is by editing an existing page. For example, if you participated in
+
Text in wiki pages can be easily formatted. The most basic formatting schemes are listed below:
a meeting for which the minutes are recorded on the wiki by other participants, you may want to edit the minutes
+
page by adding your name to the list of attendees for the meeting and/or add some information to an action item
+
that was assigned to you. In either case, you need to go to the page you wish to edit:  
+
  
*Click on the '''Edit''' tab at the top. You will be presented with an editing box containing the contents of the page.  *Scroll down to the part that you want to correct, or add to, and make your changes.
+
==='''Creating lines between text'''===
*After making your changes, click on the '''Show preview''' button below the edit box to check your work. If all looks good, click on the '''Save page''' button.
+
  
When logging in the first time to the wiki you will want to review and potentially edit your user page.  To do so, click on the link towards the top
+
Put an empty line between text you want be be separated by blank space.
right of the screen that is labeled with your userid. This is a page that is automatically created by the wiki for your personal information. To edit this page:
+
  
*Click on the '''Edit''' tab at the top.
+
Example:
*Review your full name, email address, and contact phone number in the empty editing box. If any information is incorrect, or you would like to provide further information you may do so.
+
*Click on '''Save page''' button, and you will have edited your first page on this wiki.
+
  
 +
<pre>
 +
A
 +
B
 +
</pre>
  
<big>'''Editing by running a script'''</big>
+
Appears as:
  
Instead of editing within the wiki, you can run the following script on any AFS Linux client, which will take a file which is already marked-up WikiText and/or HtML (created using an editor), and place that file on the wiki with the page name that is supplied to the script.
+
A
 +
B
  
<pre class=code>
+
Whereas:
/usr/ucs/bin/importTextFile
+
  
For usage :
+
<pre>
/usr/ucs/bin/importTextFile -h
+
A
  
Since /usr/ucs/bin is in the standard PATH, "importTextFile" can be used instead of "/usr/ucs/bin/importTextFile".
+
B
 
</pre>
 
</pre>
 +
Appears as:
 +
 +
A
 +
 +
B
 +
 +
==='''Bold'''===
 +
 +
Bold text is created by using three single quotes on each side of a block of text.
 +
 +
Example:
 +
 +
<pre>'''Bold'''</pre>
 +
 +
Becomes:
 +
 +
'''Bold'''
 +
 +
 +
==='''Italics'''===
 +
 +
Italics are created by using two single quotes on each side of a block of text.
 +
 +
Example:
 +
 +
<pre>''Italics''</pre>
 +
 +
Becomes:
 +
 +
''Italics''
 +
 +
 +
==='''Lists'''===
 +
 +
====Bulleted Lists====
 +
 +
*Bullets can be created by using an "*" at the start of each line
 +
**Nested bullets can be created using progressively more *'s in each line:
 +
 +
Example:
 +
 +
<pre>
 +
*1
 +
**A
 +
***a
 +
**B
 +
*2</pre>
 +
 +
Becomes:
 +
 +
*1
 +
**A
 +
***a
 +
**B
 +
*2
 +
 +
 +
====Enumerated Lists====
 +
 +
Enumerated lists are created by inssering "#" at the start of a line.
 +
 +
Example:
 +
 +
<pre>
 +
#A
 +
##A1
 +
##A2
 +
#B
 +
##B1
 +
##B2
 +
#C
 +
##C1
 +
##C2
 +
 +
</pre>
 +
 +
Appears as:
 +
 +
#A
 +
##A1
 +
##A2
 +
#B
 +
##B1
 +
##B2
 +
#C
 +
##C1
 +
##C2
 +
 +
==='''Advanced Wiki Formatting'''===
 +
 +
Examples of more advanced wiki formats : [[http://meta.wikimedia.org/wiki/Help:Wikitext Formating Wiki Text]]
  
 
[[Category:HPC and BD Wiki Help]]
 
[[Category:HPC and BD Wiki Help]]

Latest revision as of 16:36, 5 October 2020

Text in wiki pages can be easily formatted. The most basic formatting schemes are listed below:

Creating lines between text

Put an empty line between text you want be be separated by blank space.

Example:

A
B

Appears as:

A B

Whereas:

A 

B

Appears as:

A

B

Bold

Bold text is created by using three single quotes on each side of a block of text.

Example:

'''Bold'''

Becomes:

Bold


Italics

Italics are created by using two single quotes on each side of a block of text.

Example:

''Italics''

Becomes:

Italics


Lists

Bulleted Lists

  • Bullets can be created by using an "*" at the start of each line
    • Nested bullets can be created using progressively more *'s in each line:

Example:

*1
**A
***a
**B
*2

Becomes:

  • 1
    • A
      • a
    • B
  • 2


Enumerated Lists

Enumerated lists are created by inssering "#" at the start of a line.

Example:

 #A
 ##A1
 ##A2
 #B
 ##B1
 ##B2
 #C
 ##C1
 ##C2
 

Appears as:

  1. A
    1. A1
    2. A2
  2. B
    1. B1
    2. B2
  3. C
    1. C1
    2. C2

Advanced Wiki Formatting

Examples of more advanced wiki formats : [Formating Wiki Text]