Jump to content

Main Page: Difference between revisions

From DocDepot
No edit summary
 
No edit summary
Line 1: Line 1:
<strong>MediaWiki has been installed.</strong>
== Welcome to the Sample Page ==


Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.
This is a demonstration page to showcase the power of **MediaWiki** with the **TinyMCE** editor. You can format your content easily and visually!


== Getting started ==
=== Basic Formatting ===
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]
 
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]
- **Bold Text:** This text is '''bold'''.<br>- *Italic Text:* This text is ''italic''.<br>- ***Bold and Italic Text:*** This text is '''''bold and italic'''''.&nbsp;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]
 
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]
=== Headings and Subheadings ===
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]
 
# 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>&nbsp; - Sub-bullet point 1<br>&nbsp; - Sub-bullet point 2
 
1. Numbered item 1<br>2. Numbered item 2<br>&nbsp; &nbsp;1. Sub-item 1<br>&nbsp; &nbsp;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 ===
 
&lt;syntaxhighlight lang="csharp"&gt;<br>public class HelloWorld<br>{<br>&nbsp; &nbsp; public static void Main()<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine("Hello, MediaWiki!");<br>&nbsp; &nbsp; }<br>}<br>&lt;/syntaxhighlight&gt;
 
=== Highlighting Text ===
 
Use &lt;mark&gt;highlighting&lt;/mark&gt; to draw attention to specific parts of your text.
 
=== Blockquote ===
 
&gt; "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

  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

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!