Main Page: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
== Welcome to the Sample Page == | |||
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'''.<br>- *Italic Text:* This text is ''italic''.<br>- ***Bold and Italic Text:*** This text is '''''bold and italic'''''. | ||
* | |||
=== Headings and Subheadings === | |||
# Headings help structure your content.<br>## Subheading 1<br>### Subheading 2<br>#### Subheading 3 | |||
=== Bullet Points and Numbering === | |||
- Bullet point 1<br>- Bullet point 2<br> - Sub-bullet point 1<br> - Sub-bullet point 2 | |||
1. Numbered item 1<br>2. Numbered item 2<br> 1. Sub-item 1<br> 2. Sub-item 2 | |||
=== Links === | |||
- External link: [https://www.mediawiki.org MediaWiki Documentation]<br>- Internal link: [[Main Page]] | |||
=== Image === | |||
Below is a sample image (you can upload and replace this image): | |||
[[File:dog-image.png|thumb|300px|This is a sample image with a caption.]] | |||
=== 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>|} | |||
=== Code Block === | |||
<syntaxhighlight lang="csharp"><br>public class HelloWorld<br>{<br> public static void Main()<br> {<br> Console.WriteLine("Hello, MediaWiki!");<br> }<br>}<br></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 === | |||
----<br>That's a horizontal line!<br> | |||
Revision as of 06:01, 9 September 2024
Welcome to the Sample Page
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
- 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):

Tables
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!