Marcal Tutorial

This page is designed to help you write your own Woebegone wiki pages using the Marcal syntax! Marcal is a modified version of Markdown (specifically based off Discord's implementation) designed to make the HTML much easier for you!

Blocks

Headers

Use the # symbol followed by a space for making headers. The more # you use, the smaller the header, up to six.

For example, this input:

# Title
## Subtitle
### Subsubtitle
#### Subsubsubtitle
##### Very small title
###### Smallest title

Returns this output:

Title

Subtitle

Subsubtitle

Subsubsubtitle

Very small title
Smallest title

Blockquotes

Use the > symbol at the start of lines to show they're block quotes.

> be me
> write tutorial

becomes

be me

write tutorial

Lists

Lists come in two flavors: unordered and ordered. Unordered lists are made with * or -:

* a thing
* another thing

- a thing
- another thing

becomes

Ordered lists are made with numbers followed by either . or ) and a space.

1. WOAH Bunch
420) No Name
69. FreeSmart

becomes

  1. WOAH Bunch
  2. No Name
  3. FreeSmart

Code blocks

Anything between two lines of three ` will be rendered in a monospace font, and will ignore formatting.

 ```
 # code
 > code
 * code
 1. code
 ```

becomes

# code
> code
* code
1. code

Inline formatting

Italics, bold, underlines and strikethroughs

Italics are made surrounding a word with *, _ or ~:

*italics*
_italics_
~italics~

becomes

italics

italics

italics

Bold is made with two *, underline with two _ and strikethrough with two ~.

**bold**
__underline__
~~strikethrough~~

becomes

bold

underline

strikethrough

Code inlines

Text surrounded by two ` will be rendered in monospace. No example here because it is displayed in every description!

Embedded links

To insert a link, follow the [text](link) format.

[a *normal* YouTube video](https://youtu.be/dQw4w9WgXcQ)

becomes

a normal YouTube video

As demonstrated, formatting can be used inside of the link text!

Links within the wiki don't need the full URL, just the bit after the slash:

[a link to this very page](tutorial.html)

becomes

a link to this very page

Special Elements

All special elements use a [[Tag|detail=content|otherDetail=otherContent]] format. The tags are case sensitive and must come first.

Infoboxes

Infoboxes use the Info tag. They have three optional details:

[[Info | title=Firey Plush | Species = Plush | Age =*at least 2* | Gender=Male]]

becomes

Firey Plush

SpeciesPlush
Ageat least 2
GenderMale

Images

Images use the Image tag. They have one obligatory and five optional details:

[[Image | link=https://static.wikia.nocookie.net/nn-games/images/e/e5/7f483324496f2447b63e243e31ec27b1.jpg/revision/latest | caption=Moo, do not.|height=30% |align=right|alt=An image of Barry B. Benson.]] According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little.

becomes

An image of Barry B. Benson.

Moo, do not.

According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little.

Uploading a page

To upload a page, you must send the .txt file to a wiki admin (currently just Calculovo, probably Tomorand too in the future), who will format it into HTML and add it to the wiki themself.

This technically makes this site barely a wiki anymore since there's a very hard filter on editing but it has the spirit of one.

End

Fun fact: did you know this page was written with Marcal?