Guide to Paper Markdown: Difference between revisions

From Shiptest Wiki
Jump to navigationJump to search
m (oops)
(removes ready to use forms, updates strikethrough)
Line 37: Line 37:
|Strikethrough
|Strikethrough
|<pre>
|<pre>
*Strikethrough Text.*
~~Strikethrough Text.~~
</pre>
</pre>
|Strikethrough Text.
|<s>Strikethrough Text.</s>
|-
|-
| Centering text
| Centering text
Line 136: Line 136:
|Displays a task list, similar to normal lists but with checkboxes that can be checked off.
|Displays a task list, similar to normal lists but with checkboxes that can be checked off.
Note: The checkboxes cannot be edited after saving
Note: The checkboxes cannot be edited after saving
|}
==Forms Ready for Use==
Here are some forms you can use to make your life easier:
===General Needs===
====Incident Report====
For reporting that something happened, and that you'd like others to be aware of it. The following papercode creates a incident report:
{| class="wikitable" style="width:230px"
|-
|=== <big>Incident Report</big> ===
=== Report no. [field] ===
'''Vessel:''' [field] [field]
'''Date:''' [field] FS - [field] - [field]
'''Time:''' [field]
----
'''Incident Type:''' [field]
'''Location:''' [field]
'''Action Taken:''' [field]
'''Action Still Needed:''' [field]
'''Involved Parties:''' [field]
'''Witnesses:''' [field]
----
'''Incident Summary:''' [field]
----
[signature], [field]
|}
{| class="mw-collapsible mw-collapsed wikitable"
|-
!Paper Markdown:
|-
| scope="row" |
<pre>
# Incident Report
### **Report no.** [______]
**Vessel:** [_________] [_______________________]
**Date:** [______] FS -[____]-[____]
**Time:** [___________]
___
**Incident Type:** [______________________________]
**Location:** [___________________________________]
**Action Taken:** [_______________________________]
**Action Still Needed:** [__________________________]
**Involved Parties:** [____________________________]
**Witnesses:** [_________________________________]
___
**Incident Summary:** [______________________________________________________________________________________________]
___
%s, [_________________________]
</pre>
|}
|}

Revision as of 22:28, 28 January 2024

Writing Tools

PenPen

Pens come in a few different colors, black or blue by default, and some departments will be provided with red pens. Every crew member starts with one in their PDA that can be ejected with ctrl+click.

CrayonCrayon

Crayons work much like pens, except that they are always bold, and lack the list, horizontal rule, and small tags.

Writing

Writing is performed by using any writing tool on paper, with any standard writing utensil.
Use the Markdown Cheat Sheet for information on how to write formatting elements. However, not all elements are not available in game.

Description You type You get
Bold
**Bold Text.**

Bold text.

Italic
*Italics Text.*

Italics text.

Code
`Code Text.`
Code Text.
Strikethrough
~~Strikethrough Text.~~
Strikethrough Text.
Centering text
<center>Centered text.</center>
Centered text.
Horizontal rules
Before line.
___
After line.

Before line.


After line.

Signature
%s

John Smith
Note: Signatures can't be faked since they use a different font.

Only works within fillable fields.

Field
[_____________]

Displays an editable text input field with a size based on the number of underscores.

Headers
# H1

## H2

### H3
Displays an heading with size based on the number of hashtags.
Table
| Title 1 | Title 2 |
| ----------- | ----------- |
| Text 1  | Text 2 |
| Info 1 | Info 2 | 
Title 1 Title 2
Text 1 Text 2
Info 1 Info 2
List
- Item one
- Item two
  - Subitem one
  • Item one
  • Item two
    • Subitem one
Numbered List
1. First item
2. Second item
3. Third item
  1. First one
  2. Second item
  3. Third item
Task List
- [x] Obtain a bar of soap
- [ ] Slip the Captain
- [ ] Evade arrest
Displays a task list, similar to normal lists but with checkboxes that can be checked off.

Note: The checkboxes cannot be edited after saving