mediawiki_convert_markdown
Convert Markdown text to MediaWiki markup for wiki pages. Supports themes, CSS styling, and formatting options.
Instructions
Convert Markdown text to MediaWiki markup. Use this tool when you need to transform Markdown-formatted content into wiki-compatible format before creating or editing wiki pages.
WHEN TO USE:
User provides Markdown content to add to the wiki
Converting documentation from GitHub/GitLab to wiki format
Transforming README files for wiki publishing
Preparing release notes written in Markdown
THEMES:
"tieto": Tieto brand colors (Hero Blue #021e57 headings, yellow code highlights)
"neutral": Clean output without custom colors (default)
"dark": Dark mode optimized colors
OPTIONS:
add_css: Include CSS styling block for branded appearance
reverse_changelog: Reorder changelog entries newest-first
prettify_checks: Replace plain checkmarks with emoji
EXAMPLE: Input: "# Hello\nbold and italic\n- item 1\n- item 2" Output: "= Hello =\n'''bold''' and ''italic''\n* item 1\n* item 2"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| theme | No | Color theme: 'tieto' (brand colors), 'neutral' (no styling, default), or 'dark' (dark mode) | |
| add_css | No | Include CSS styling block for branded appearance | |
| markdown | Yes | The Markdown text to convert to MediaWiki markup | |
| prettify_checks | No | Replace plain checkmarks with emoji ✅ | |
| reverse_changelog | No | Reorder changelog entries with newest first |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wikitext | Yes | ||
| theme_used | Yes | ||
| input_length | Yes | ||
| output_length | Yes | ||
| available_themes | Yes |