Difference between revisions of "Making A New Wiki"

From PHASTA Wiki
Jump to: navigation, search
(Added info about basic formatting stuff)
Line 13: Line 13:
  
 
DONE
 
DONE
 +
 +
== Formatting ==
 +
See [https://en.wikipedia.org/wiki/Help:Cheatsheet this Wikipedia cheatsheet] and [https://www.mediawiki.org/wiki/Help:Formatting this Mediawiki page] for general information about heading structures, making lists, and adding bold, italics, etc.
 +
 +
Some basics:
 +
 +
=== Headings ===
 +
Headings are done by surrounding a line with different numbers of <code>=</code>. Note these start at level 2, as level 1 is the heading style of the page title.
 +
 +
Level 2: <code>== Level 2 Header ==</code>
 +
 +
Level 3: <code>=== Level 3 Header ===</code>
 +
 +
...
 +
 +
Level 6: <code>====== Level 6 Header ======</code>
 +
 +
=== Code Formatting ===
 +
Code is formatted with HTML tags. For inline code, do
 +
<nowiki> <code> some code </code> </nowiki>
 +
 +
To do larger code blocks, you need the <code><nowiki></code> tag ''with a space leading the start tag''. I can't get the formatting to show up correctly here, so go  [https://www.mediawiki.org/wiki/Help:Formatting#Paragraphs here] and scroll up to see the section I'm talking about.

Revision as of 18:17, 1 December 2019

So you are ready to make make a brand new wiki page. The process for doing this is:

1) assuming you are reading this you are on the wiki page but be sure you login

2) go to your browsers url and replace whatever is after index.php/ with whatever you want to name your page noting that underscores will map to spaces. For example, this page was made by the following edit http://fluid.colorado.edu/wiki/index.php/Making_A_New_Wiki

3) assuming you chose a unique title this will take you to a new blank wiki page with a Create button near the top

4) click that create button and then start composing your new wiki in the editing window

5) when you are done with this draft (wikis are NEVER done) click the save page button (feel free to put something descriptive in the Summary window at the bottom.

DONE

Formatting

See this Wikipedia cheatsheet and this Mediawiki page for general information about heading structures, making lists, and adding bold, italics, etc.

Some basics:

Headings

Headings are done by surrounding a line with different numbers of =. Note these start at level 2, as level 1 is the heading style of the page title.

Level 2: == Level 2 Header ==

Level 3: === Level 3 Header ===

...

Level 6: ====== Level 6 Header ======

Code Formatting

Code is formatted with HTML tags. For inline code, do

 <code> some code </code> 

To do larger code blocks, you need the <nowiki> tag with a space leading the start tag. I can't get the formatting to show up correctly here, so go here and scroll up to see the section I'm talking about.