> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sirius.menu/llms.txt
> Use this file to discover all available pages before exploring further.

# Making posts

> An in-depth guide on making posts in the Sirius forum.

## Dos and don'ts

<CardGroup cols={2}>
  <Card title="Cross posting" icon="shield-check">
    Please only make one post and do not cross post.
  </Card>

  <Card title="Don't ask to ask" icon="times">
    Don't ask "Any Rayfield experts around?", but rather ask "How do I do \[problem] with Rayfield and \[other relevant info]?"
  </Card>

  <Card title="Direct messages" icon="envelope">
    Do not DM staff or other users to ask for help with code.
  </Card>

  <Card title="Detailed information" icon="info">
    Include your code, the exact issue you're having, the errors produced, libraries, and any other information.
  </Card>
</CardGroup>

## How to view errors

To view errors, press F9 or type `/console` to open the Roblox console, and upload a screenshot of it in your post.

## How to post code

For long code, upload it as a file rather than a message to avoid flooding the channel.

If you're sharing code as a message, use code blocks — they provide syntax highlighting and read better for multi-line code.

### Inline code blocks

Add a backtick `` ` `` to the beginning and end of the line, producing something like `print("hi")`.

### Multi-line code blocks

Add a blank line at both the start and end of your code, and wrap those lines with three backticks (` ``` `). On the opening line, include the language right after the backticks to enable syntax highlighting.

**Example**:

````markdown theme={null}
```lua
print("hello world")
```
````

**Supported languages**:

| Language   | Aliases        |
| ---------- | -------------- |
| Lua        | lua            |
| Python     | python         |
| JavaScript | javascript, js |
| TypeScript | typescript, ts |
| Java       | java           |
| C          | c              |
| C++        | cpp            |
| C#         | csharp         |
| Go         | go             |
| Rust       | rust           |
| Kotlin     | kotlin         |
| Swift      | swift          |
| HTML       | html           |
| XML        | xml            |
| CSS        | css            |
| JSON       | json           |
| YAML       | yaml, yml      |
| Markdown   | markdown, md   |

> ⚠️ This list does not include all supported languages.
