SPICE %7C How to Create a SPICE Wiki Page - UMCST/SPICE-user-info GitHub Wiki

General Page Creation:

  1. Select "New Page" towards the top-right of the wiki page
  2. Create a useful title that accurately describes the contents while also being relatively in-line with already existing related pages
  3. Write your wiki page using all of the formatting tricks and guidelines below
  4. Save the page
  5. Find your page under the "Pages" section above the sidebar, click on it and copy the URL
  6. Edit the sidebar of the wiki and place the title and link of your page under the appropriate grouping, if the appropriate grouping does not already exist, create your own

Page Guidelines:

  1. All command segments are to be displayed as code
  2. All filepaths are to be bolded
  3. Steps are to be formatted with numbers, if nested steps are required, these are to be displayed with letters.
  4. Otherwise refer to other pages on the wiki for other formatting standards
  5. If you notice formatting inconsistencies between pages, fix them, and add a step to this page (if it doesn't already exist) indicating what must be done to remain in-line with that new formatting directive

Tips and Tricks/Formatting Methods

How to Include Images on Pages method 1:

  1. Save images to your computer
  2. Mouse over to issue tab in Github
  3. Select new issue and add your files to the body of the issue
  4. Copy the links produced by your images and paste them into your wiki page

How to Include Images on Pages method 2:

  1. Drag image to the edit page window

The code will look like this

![SPICE Logo](https://user-images.githubusercontent.com/79597328/211172807-4e12516a-727b-4f93-bac1-f2def4029c8e.PNG)


Alignment

If you want to center an image you will need the url from method 1 or url from method 2 above


Center

<p align="center">
  <img width="460" height="300" src="https://user-images.githubusercontent.com/79597328/211172807-4e12516a-727b-4f93-bac1-f2def4029c8e.PNG">
</p>

Left Align

This is the code you need to align images to the left:

<img align="left" width="100" height="100" src="https://user-images.githubusercontent.com/79597328/211172807-4e12516a-727b-4f93-bac1-f2def4029c8e.PNG">

Right Align

This is the code you need to align images to the right:

<img align="right" width="100" height="100" src="https://user-images.githubusercontent.com/79597328/211172807-4e12516a-727b-4f93-bac1-f2def4029c8e.PNG">

Below are most if not all of the formatting modifiers you will need to create a page.

Section Headers:

Big

### Big

Bigger

## Bigger

Biggest

# Biggest


Text Modifiers:

code

`code`

bold

`**bold**`

italics

`_italics_`


Steps (Indentation of bullets is based on number of space, 3 spaces are needed before bullet to be correctly indented):

  1. First
    • first
    • second
  2. Second

1. First - first - second 2. Second


Link: Title of Page

⚠️ **GitHub.com Fallback** ⚠️