<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Forum Features]]></title><description><![CDATA[<p dir="auto">Dear Community,</p>
<p dir="auto">This posting contains information on how to write postings and upload data to the forum on a technical level.</p>
<blockquote>
<p dir="auto">See our <a href="https://developers.maxon.net/forum/topic/15242/" target="_blank" rel="noopener noreferrer nofollow ugc">Forum Overview</a> topic for an overview the forum structure and our code of conduct. The <a href="https://developers.maxon.net/forum/topic/15244/" target="_blank" rel="noopener noreferrer nofollow ugc">Support Procedures</a> topic lines out how we deliver support, which topics are within the scope of support, and the hallmarks of a good technical question.</p>
</blockquote>
<h2>Basics</h2>
<h4>Creating Topics</h4>
<p dir="auto">A new topic can be created with the <code>New Topic</code> button to be found at the top of each sub-forum (<em>Fig. I</em>).<br />
<img src="https://developers.maxon.net/forum/assets/uploads/files/1701096693829-14bfb369-9248-4ae1-95c9-d128265ea2ce-image.png" alt="14bfb369-9248-4ae1-95c9-d128265ea2ce-image.png" class=" img-fluid img-markdown" /><br />
<em>Fig. I: The New topic button can be found in each forum into which you can post, the button not being present means that you are not allowed to create topics in this forum.</em></p>
<h4>Changing Forums</h4>
<p dir="auto">After pressing the button, the posting editor will open. When creating a new topic, the editor will allow you to change the forum to post into with a button in the top left (Fig. II).<br />
<img src="https://developers.maxon.net/forum/assets/uploads/files/1701096719065-1213a9e6-6ea8-4ceb-94e9-b8b256bf0188-image.png" alt="1213a9e6-6ea8-4ceb-94e9-b8b256bf0188-image.png" class=" img-fluid img-markdown" /><br />
<em>Fig. II: The category button can be found in the top left of the posting editor when creating a new topic.</em></p>
<h4>Adding Tags</h4>
<p dir="auto">Many forums allow you or even require you to add tags to your posting. The tags button can be found in the left bottom of the posting editor (Fig. III).</p>
<p dir="auto"><img src="https://developers.maxon.net/forum/assets/uploads/files/1701096873560-bf13214d-7292-4e3e-9029-0102f9a29c52-image.png" alt="bf13214d-7292-4e3e-9029-0102f9a29c52-image.png" class=" img-fluid img-markdown" /><br />
<em>Fig. III: The tags button allows you to descibe a posting with predefined tags.</em></p>
<p dir="auto">You should always describe the language (C++/Python), the operating system (Windows/MacOS), and the version you are targeting.</p>
<h2>Forum Markup</h2>
<p dir="auto">This is an overview of all forum markup and its rendered output.</p>
<hr />
<h4>Uploading Content</h4>
<p dir="auto">You can upload images and files to the forum as shown below.<br />
<img src="https://developers.maxon.net/forum/assets/uploads/files/1701097123654-3456a82b-573b-4856-9773-49ac8b0cabca-image.png" alt="3456a82b-573b-4856-9773-49ac8b0cabca-image.png" class=" img-fluid img-markdown" /><br />
<img src="https://developers.maxon.net/forum/assets/uploads/files/1701097151920-eddd65e1-e1c0-4a42-908f-069ea4571f45-image.png" alt="eddd65e1-e1c0-4a42-908f-069ea4571f45-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">The maximum upload size is 16 MB and the supported file formats are:</p>
<ul>
<li><strong>Image</strong>: <code>png, jpg, bmp, gif, webm</code></li>
<li><strong>File</strong>: <code>zip, py, pyp, pdf, txt, cpp, h, vdb, mp4</code></li>
</ul>
<p dir="auto">Uploaded <code>mp4</code> files will be automatically displayed in a video player. You also can embed Youtube, Vimeo, and Twitter content by simply posting a link in a topic.</p>
<hr />
<h4>Emphasis</h4>
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td><code>*italic*</code></td>
<td><em>italic</em></td>
</tr>
<tr>
<td><code>**bold**</code></td>
<td><strong>bold</strong></td>
</tr>
<tr>
<td><code>~~strikethrough~~</code></td>
<td><s>strikethrough</s></td>
</tr>
<tr>
<td><code>[Link](https://www.google.com/)</code></td>
<td><a href="https://www.google.com/" target="_blank" rel="noopener noreferrer nofollow ugc">Link</a></td>
</tr>
<tr>
<td><code>`monospace`</code></td>
<td><code>monospace</code></td>
</tr>
</tbody>
</table>
<hr />
<h4>Lists</h4>
<p dir="auto">Bullet point and index lists can be mixed, the actual numbering in index lists does not matter, it will be applied by the parser (<code>Beans</code> has the index <code>6</code> in the markup but is then correctly rendered as <code>2</code>).</p>
<pre><code class="language-txt">* Food
  * Fruits
    1. Apple
    2. Avocado
    3. Banana
  * Vegetables
    1. Aubergine
    6. Beans
    3. Carrot
* Toys
</code></pre>
<ul>
<li>Food
<ul>
<li>Fruits
<ol>
<li>Apple</li>
<li>Avocado</li>
<li>Banana</li>
</ol>
</li>
<li>Vegetables
<ol>
<li>Aubergine</li>
<li>Beans</li>
<li>Carrot</li>
</ol>
</li>
</ul>
</li>
<li>Toys</li>
</ul>
<hr />
<h4>Code Blocks</h4>
<p dir="auto">Code blocks can be styled with a sytanx. <code>[py]</code> will force Python syntax, <code>[cpp]</code> C++ syntax, and <code>[txt]</code> no syntax (among many other syntaxes). Setting no syntax hint will cause the styling to fall back to Python syntax.</p>
<p dir="auto"><img src="https://developers.maxon.net/forum/assets/uploads/files/1701100499511-4a5c9678-950d-4455-a6bc-46edf5356b60-image.png" alt="9678-950d-4455-a6bc-46edf5356b60-image.png" class=" img-fluid img-markdown" /></p>
<pre><code class="language-py">class Item (object):
    """Blah
    """
    def __init__(self, *args, **kwargs) -&gt; None:
        self.id: int = 0
        self.name: str = ""

    def run(self) -&gt; str:
        return f"My name is {self.name} at {self.id}."
    
# Create an item and run it.
thing: Item = Item()
thing. Run()
</code></pre>
<p dir="auto"><img src="https://developers.maxon.net/forum/assets/uploads/files/1701100526567-121c6501-feec-450e-8425-dd0b2147a062-image.png" alt="121c6501-feec-450e-8425-dd0b2147a062-image.png" class=" img-fluid img-markdown" /></p>
<pre><code class="language-cpp">class Foo {   // A class
  public:
    int bar;
};
</code></pre>
<hr />
<h4>Quotes and Tables</h4>
<p dir="auto"><code>&gt; “Not every quote you read on the internet is true.” – Abraham Lincoln</code></p>
<blockquote>
<p dir="auto">“Not every quote you read on the internet is true.” – Abraham Lincoln</p>
</blockquote>
<pre><code class="language-txt">| A | B | C | 
| - | - | - |
| 1 | 2 | 3 | 
| 4 | 5 | 6 | 
</code></pre>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</tbody>
</table>
<hr />
<h4>Headings and Seperators</h4>
<pre><code class="language-txt"># h1 title
## h2 title
### h3 title
#### h4 title
##### h5 title
###### h6 title
---
</code></pre>
<h1>h1 title</h1>
<h2>h2 title</h2>
<h3>h3 title</h3>
<h4>h4 title</h4>
<h5>h5 title</h5>
<h6>h6 title</h6>
<hr />
<p dir="auto">Happy posting,<br />
the Maxon SDK Group</p>
<blockquote>
<p dir="auto">This topic deliberately has been left open for on-topic questions. Due to the informative nature of this topic, it will be strictly moderated.</p>
</blockquote>
]]></description><link>http://developers.maxon.net/forum/topic/15243/forum-features</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 10:15:07 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/15243.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 30 Nov 2023 11:51:08 GMT</pubDate><ttl>60</ttl></channel></rss>