Jump to content

Main Page: Difference between revisions

From DocDepot
No edit summary
No edit summary
Line 1: Line 1:
== Welcome to the Sample Page ==
== Welcome to the Sample Page (Production) ==


This is a demonstration page to showcase the power of **MediaWiki** with the **TinyMCE** editor. You can format your content easily and visually!
This is a demonstration page to showcase the power of **MediaWiki** with the **TinyMCE** editor. You can format your content easily and visually!
Line 29: Line 29:
=== Tables ===
=== Tables ===


{| class="wikitable"<br>|-<br>! Column 1 !! Column 2 !! Column 3<br>|-<br>| Row 1, Cell 1 || Row 1, Cell 2 || Row 1, Cell 3<br>|-<br>| Row 2, Cell 1 || Row 2, Cell 2 || Row 2, Cell 3<br>|}
|-<br>! Column 1 !! Column 2 !! Column 3<br>|-<br>| Row 1, Cell 1 || Row 1, Cell 2 || Row 1, Cell 3<br>|-<br>| Row 2, Cell 1 || Row 2, Cell 2 || Row 2, Cell 3<br>|} data-mwt-tableStartNewLines=2&gt;
 
=== Code Block ===
=== Code Block ===


Line 45: Line 44:
=== Horizontal Line ===
=== Horizontal Line ===


----<br>That's a horizontal line!<br>
----
<br>That's a horizontal line!<br><br>
{| class="wikitable" br=""
|}

Revision as of 06:02, 9 September 2024

Welcome to the Sample Page (Production)

This is a demonstration page to showcase the power of **MediaWiki** with the **TinyMCE** editor. You can format your content easily and visually!

Basic Formatting

- **Bold Text:** This text is bold.
- *Italic Text:* This text is italic.
- ***Bold and Italic Text:*** This text is bold and italic

Headings and Subheadings

  1. Headings help structure your content.
    ## Subheading 1
    ### Subheading 2
    #### Subheading 3

Bullet Points and Numbering

- Bullet point 1
- Bullet point 2
  - Sub-bullet point 1
  - Sub-bullet point 2

1. Numbered item 1
2. Numbered item 2
   1. Sub-item 1
   2. Sub-item 2

Links

- External link: MediaWiki Documentation
- Internal link: Main Page

Image

Below is a sample image (you can upload and replace this image):

This is a sample image with a caption.

Tables

|-
! Column 1 !! Column 2 !! Column 3
|-
| Row 1, Cell 1 || Row 1, Cell 2 || Row 1, Cell 3
|-
| Row 2, Cell 1 || Row 2, Cell 2 || Row 2, Cell 3
|} data-mwt-tableStartNewLines=2>

Code Block

<syntaxhighlight lang="csharp">
public class HelloWorld
{
    public static void Main()
    {
        Console.WriteLine("Hello, MediaWiki!");
    }
}
</syntaxhighlight>

Highlighting Text

Use <mark>highlighting</mark> to draw attention to specific parts of your text.

Blockquote

> "This is a blockquote used for quoting text."

Horizontal Line



That's a horizontal line!