SPICE | How to Create a SPICE Wiki Page - UMCST/SPICE-user-info GitHub Wiki
General Page Creation:
- Select "New Page" towards the top-right of the wiki page
- Create a useful title that accurately describes the contents while also being relatively in-line with already existing related pages
- Write your wiki page using all of the formatting tricks and guidelines below
- Save the page
- Find your page under the "Pages" section above the sidebar, click on it and copy the URL
- 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:
- All command segments are to be displayed as
code
- All filepaths are to be bolded
- Steps are to be formatted with numbers, if nested steps are required, these are to be displayed with letters.
- Otherwise refer to other pages on the wiki for other formatting standards
- 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:
- Save images to your computer
- Mouse over to issue tab in Github
- Select new issue and add your files to the body of the issue
- Copy the links produced by your images and paste them into your wiki page
How to Include Images on Pages method 2:
- Drag image to the edit page window
The code will look like this

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):
- First
- first
- second
- Second
1. First
- first
- second
2. Second
Link: Title of Page