🌙
Basic Formatting

Demonstrates conversion of bold, italic, and strikethrough text.

From: Azure DevOps Markdown

**This is bold text**
*This is italic text*
~~This is strikethrough text~~

To: MediaWiki Wikitext

'''This is bold text'''
''This is italic text''
<s>This is strikethrough text</s>
Lists

Shows how ordered and unordered lists are converted.

From: Azure DevOps Markdown

1. First ordered item
2. Second ordered item
    - Unordered sub-item.
3. Third ordered item

- Unordered item
- Another unordered item

To: MediaWiki Wikitext

# First ordered item
# Second ordered item
#* Unordered sub-item.
# Third ordered item

* Unordered item
* Another unordered item
Tables

Complex table with headers and alignment.

From: Azure DevOps Markdown

| Option | Description |
| :--- | :--- |
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |

To: MediaWiki Wikitext

{| class="wikitable"
! Option
! Description
|-
| data
| path to data files to supply the data that will be passed into templates.
|-
| engine
| engine to be used for processing templates. Handlebars is the default.
|-
| ext
| extension to be used for dest files.
|}
Code Blocks

Conversion of fenced code blocks with language identifiers.

From: Azure DevOps Markdown

```json
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```

```python
def hello_world():
    print("Hello, world!")
```

To: MediaWiki Wikitext

<syntaxhighlight lang="json">
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
</syntaxhighlight>

<syntaxhighlight lang="python">
def hello_world():
    print("Hello, world!")
</syntaxhighlight>
Images and Attachments

How embedded images and file attachments are handled.

From: Azure DevOps Markdown

![An image](.attachments/image-20210312144945-1.png)

[A document](.attachments/document.pdf)

To: MediaWiki Wikitext

[[File:image-20210312144945-1.png|An image]]

[[Media:document.pdf|A document]]
The migrator automatically uploads files from the .attachments folder to the MediaWiki server.
Admonitions (Note/Warning)

Conversion of Azure DevOps admonition blocks to MediaWiki templates.

From: Azure DevOps Markdown

> [!NOTE]
> This is a note.

> [!WARNING]
> This is a warning.

To: MediaWiki Wikitext

{{Note|This is a note.}}

{{Warning|This is a warning.}}
This requires the 'Note' and 'Warning' templates to be present in your MediaWiki instance.