Convert 3D models from 50+ different formats

If you want to quickly and easily convert a 3D model, then this is just the page for you. Our simple converter offers you 627 different possibilities for file conversion. No matter if STL, OBJ, Blend, FBX or PLY: We can do them all. Try it out. It only takes a few seconds.

Available input formats




Covert now from OBJ to STL Let's go.


Available output formats


Xwiki Import Markdown Apr 2026

return markdown_text with open('document.md', 'r') as f: md_content = f.read()

# Prepare API request url = f"{XWIKI_URL}/rest/wikis/xwiki/spaces/{SPACE}/pages/{page_name}"

def escape_xwiki_syntax(self, content): """Escape XWiki special characters""" # Escape velocity syntax content = content.replace('#', '~#') content = content.replace('$', '~$') # Escape macro syntax content = content.replace('{{', '~{{') content = content.replace('}}', '~}}') return content

class XWikiMarkdownImporter: def (self, url, username, password): self.base_url = url.rstrip('/') self.auth = HTTPBasicAuth(username, password) self.session = requests.Session() self.session.auth = self.auth xwiki import markdown

def import_markdown_file(file_path, page_name): """Import a markdown file to XWiki"""

# Headers markdown_text = re.sub(r'^# (.*?)$', r'= \1 =', markdown_text, flags=re.M) markdown_text = re.sub(r'^## (.*?)$', r'== \1 ==', markdown_text, flags=re.M) markdown_text = re.sub(r'^### (.*?)$', r'=== \1 ===', markdown_text, flags=re.M)

# Send request response = requests.put( url, json=data, auth=HTTPBasicAuth(USERNAME, PASSWORD), headers={"Content-Type": "application/json"} ) return markdown_text with open('document

Link {{/markdown}} Copy-paste your Markdown file content between the {{markdown}} tags. Method 2: Using REST API (For Batch Import) Python Script Example import requests import os from requests.auth import HTTPBasicAuth Configuration XWIKI_URL = "http://localhost:8080/xwiki" USERNAME = "Admin" PASSWORD = "admin" SPACE = "Main"

# Wrap in markdown macro wiki_content = f"{{{{markdown}}}}\n{markdown_content}\n{{{{/markdown}}}}"

--- title: My Document author: John Doe date: 2024-01-01 tags: [wiki, markdown] --- Convert to XWiki properties: return markdown_text with open('document.md'

# Code blocks markdown_text = re.sub(r'```(\w*)\n(.*?)```', r'{{code language="\1"}}\n\2\n{{/code}}', markdown_text, flags=re.DOTALL)

# Escape problematic characters content = content.replace('\\', '\\\\') content = content.replace('{{', '~{{') content = content.replace('}}', '~}}') Create a mapping for frontmatter:

# Import single file importer.import_file("document.md", space="Main")

import re def markdown_to_xwiki(markdown_text): """Convert basic Markdown to XWiki syntax"""

# Links markdown_text = re.sub(r'\[(.*?)\]\((.*?)\)', r'[[\1>>\2]]', markdown_text)