Skip to content

TrickBD

Markdown & Posting Guide

Last Updated: February 07, 2026

Welcome to the TrickBD community! When you create a thread or reply, you write plain text, and Markdown turns it into beautiful formatting automatically.

Rule of thumb: You type symbols like **, #, - and Markdown converts them when your post is published.


Markdown Basics (How to Actually Write It)

Below, you’ll always see:

What you typeWhat users will see


Text Formatting

Bold

**This text is bold**

This text is bold

Italic

*This text is italic*

This text is italic

Strikethrough

~~This text is crossed out~~

This text is crossed out

Inline Code

`npm install`

npm install


Headings (Titles & Sections)

Type # at the beginning of a line:

# Main Title
## Section Title
### Sub Section

Main Title

Section Title

Sub Section


Lists

Unordered List

- Item one
- Item two
  - Sub item

  • Item one

  • Item two

    • Sub item

Ordered List

1. First step
2. Second step
3. Third step

  1. First step
  2. Second step
  3. Third step

Task List

- [x] Completed
- [ ] Not completed

  • Completed
  • Not completed

Links & Images

Link

[Visit TrickBD](/forums)

Visit TrickBD

External Link

[Google](https://google.com)

Google

Image

![Image description](https://example.com/hello.jpg)

Image description


Quotes (Replying or Highlighting)

> This is a quoted text
> Useful for replies or references

This is a quoted text Useful for replies or references


Tables

| Feature | Supported |
|--------|-----------|
| Tables | Yes |
| Tasks  | Yes |

FeatureSupported
TablesYes
TasksYes

Code Blocks (Very Important for Developers)

Use three backticks before and after your code:

console.log("Hello TrickBD");

```console.log("Hello TrickBD");```

Pro Tips (This Prevents 90% of Mistakes)

  • Leave a blank line between sections
  • Always close symbols (**, `, ~~)
  • Preview mentally: “I type symbols → system formats it”
  • For code, never use screenshots — always code blocks

You don’t click buttons to format text. You type Markdown, and TrickBD handles the rest.

If you can type plain text — you already know Markdown.

Happy posting 🚀