Difference between revisions of "Making A New Wiki"

From PHASTA Wiki
Jump to: navigation, search
(Create a new wiki page in 5 easy steps.)
 
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
So you are ready to make make a brand new wiki page. The process for doing this is:
+
So you are ready to make a brand new wiki page? Awesome! Thanks for contributing to the group. This page outlines the process of making a page and some helpful formatting tips. Once you're done with this, checkout [[Wiki Best Practices]] to see how to make your wiki page useful for everyone.
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
+
== Steps to Make a New Wiki Page ==
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
+
# Assuming you are reading this you are on the wiki page but be sure you login (Note: when you first get an account with the portal, you are given the exact same username and password for the wiki page).
4) click that create button and then start composing your new wiki in the editing window
+
# Go to your browsers url and replace whatever is after <code>index.php/</code> with whatever you want to name your page noting that underscores will map to spaces.  
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.
+
#* For example, this page was made by the following edit <code>http://fluid.colorado.edu/wiki/index.php/Making_A_New_Wiki</code>
 +
# Assuming you chose a unique title this will take you to a new blank wiki page with a Create button near the top
 +
# Click that create button and then start composing your new wiki in the editing window
 +
# 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
 
DONE
 +
 +
== Formatting ==
 +
See [https://www.mediawiki.org/wiki/Cheatsheet this Mediawiki 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>&lt;nowiki&gt;</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.
 +
 +
=== Categories ===
 +
 +
You can mark a page as being apart of a category. This is done by adding a <code><nowiki>[[Category: MyCategory]]</nowiki></code> to the page. See [[:Special:Categories]] for the categories already in use on the wiki.
 +
 +
== Wiki Best Practices ==
 +
 +
Once you have the basics down, head over to [[Wiki Best Practices]] to learn about how to best contribute and maintain the wiki site!

Latest revision as of 17:25, 18 October 2020

So you are ready to make a brand new wiki page? Awesome! Thanks for contributing to the group. This page outlines the process of making a page and some helpful formatting tips. Once you're done with this, checkout Wiki Best Practices to see how to make your wiki page useful for everyone.

Steps to Make a New Wiki Page

  1. Assuming you are reading this you are on the wiki page but be sure you login (Note: when you first get an account with the portal, you are given the exact same username and password for the wiki page).
  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.
  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 Mediawiki 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.

Categories

You can mark a page as being apart of a category. This is done by adding a [[Category: MyCategory]] to the page. See Special:Categories for the categories already in use on the wiki.

Wiki Best Practices

Once you have the basics down, head over to Wiki Best Practices to learn about how to best contribute and maintain the wiki site!