Hi @rugged oxide, you can use the following snippet to place your code in a syntax highlighted codeblock. Replace ts with the language you need (i.e. html, js, css, etc.)
```ts
// your code goes here
```
This example:
**```ts
const greet = (name: string) => console.log(`Hi ${name}, welcome to the Angular Community Discord!`);
greet("Tom"); // "Hi Tom, welcome to the Angular Community Discord!"
```**
will appear in a post like this:
const greet = (name: string) => console.log(`Hi ${name}, welcome to the Angular Community Discord!`);
greet("Tom"); // "Hi Tom, welcome to the Angular Community Discord!"