Forum formatting tricks

Text formatting

A sample with bold, italic, and struckthrough text.

A sample with **bold**, *italic*, and ~~struckthrough~~ text.

Text size can be made big or small, too.

Text size can be made <big>big</big> or <small>small</small>, too.

Superscripts and subscripts

Erest = mc2

E<sub>rest</sub> = mc<sup>2</sup>

Section headers

Sub-section

# Section headers
## Sub-section

Tables

Column 1 Column 2
A B
a b
|Column 1 | Column 2|
|--- | ---|
|A | B|
|a | b|

Footnotes

Material with a footnote[1] or two.[2]

Material with a footnote[^1] or two.[^myFoot]

[^1]: Note at the bottom
[^myFoot]: Named note.

  1. Note at the bottom ↩︎

  2. Named note. ↩︎

2 Likes

Inline link

This links to https://example.com.
Links can be renamed.
example.com also works.

This links to https://example.com.
Links can be [renamed](https://example.com).
example.com also works.

frame.work doesn’t get recognized.
But https://frame.work does.
So does frame.work.

frame.work doesn't get recognized.
But https://frame.work does.
So does [frame.work](https://frame.work).

Lists

Bulleted list

  • Item
  • Another item
* Item
* Another item

Numbered lists

  1. Item (this number chooses where you start)
  2. Another item (subsequent numbers don’t matter, they will automatically count up)
1. Item (this number chooses where you start)
1. Another item (subsequent numbers don't matter, they will automatically count up)

Checkboxes

This one todo, this one done.

This one [ ] todo, this one [x] done.

Hidden details

Some hidden details

This text will be hidden

[details="Some hidden details"]
This text will be hidden
[/details]

Code blocks

Unformatted

console.log(`hello ${user.name}!`);
```text
console.log(`hello ${user.name}!`);
```

Auto-formatted

console.log(`hello ${user.name}!`);
```
console.log(`hello ${user.name}!`);
```
3 Likes
  • toothbrush
  • toothpaste
  • gummy bears
    Do you like gummy bears
  1. No
  2. Yes
  3. Sometimes

Practice makes perfect :wink:

1 Like

[floatl]Today we celebrate[/floatl]
.

[center]Some formatting for dummies[/center]
.
[right]With new UI controls[/right]

[color=#ff0000]Right[/color] [color=#66ff66]at[/color] [color=#000ff]your[/color] [color=#ff0066]finger[/color] [color=#6600cc]tips[/color] , just choose a color

[size=14]And[/size] [size=6]your[/size] size

when you need to

2024-07-12T23:44:00Z

2 Likes