- This is for writing and formatting syntax for e25DX only.
- Refer Basic writing and formatting syntax on GitHub for a complete Markdown syntax guild.
Styling Text
| Style | Syntax | Example | Output |
|---|---|---|---|
| Bold | ** ** or __ __ | **This is bold text** | This is bold text |
| Italic | * * or _ _ | _This text is italicized_ | This text is italicized |
| Strikethrough | ~~ ~~ or ~ ~ | ~~This was mistaken text~~ |
Quoting Text
> Text that is a quoteOutput
Text that is a quote
Quoting Code
Inline
Use `git status` to list all new or modified files that haven't yet been committed.Output
Use git status to list all new or modified files that haven’t yet been committed.
Code Blocks
```rust
fn main() {
println!("Hello, world!");
}
```Output
fn main() {
println!("Hello, world!");
}Code Windows
```rust { title="Hello World!" link="https://github.com/org/repo/blob/main/content/file.md?plain=1#L8-L12" }
fn main() {
println!("Hello, world!");
}
```Output
fn main() {
println!("Hello, world!");
}Links
External/ Absolute
This site was built using [GitHub Pages](https://pages.github.com/).Output
This site was built using GitHub Pages.
Internal/ Relative
Link to [Embeds](/docs/short-codes/#embeds). If same page: Link to [Inline](#inline).Output
Link to Embeds. If same page: Link to Inline.
Images

Image credit: [Jeremy Thomas](https://unsplash.com/@jeremythomasphoto)Output
Image credit: Jeremy Thomas
Lists
Ordered
1. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
2. Ut eu elit at eros gravida consequat.
1. Nulla pharetra elit non risus semper scelerisque.
1. Duis ut ex ac dolor pretium consequat.Output
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Ut eu elit at eros gravida consequat.
- Nulla pharetra elit non risus semper scelerisque.
- Duis ut ex ac dolor pretium consequat.
- Nulla pharetra elit non risus semper scelerisque.
Unordered
- Nulla in ante feugiat, consequat lectus et, porttitor orci
- Quisque auctor quam nec diam maximus venenatis
- Quisque ac neque sit amet nulla efficitur ultrices
- Nullam vitae odio a nibh pellentesque auctor.
- Suspendisse aliquam est gravida lectus eleifend, ac vehicula turpis sagittis
- Duis eu neque eu tellus ultrices gravidaOutput
- Nulla in ante feugiat, consequat lectus et, porttitor orci
- Quisque auctor quam nec diam maximus venenatis
- Quisque ac neque sit amet nulla efficitur ultrices
- Nullam vitae odio a nibh pellentesque auctor.
- Quisque ac neque sit amet nulla efficitur ultrices
- Suspendisse aliquam est gravida lectus eleifend, ac vehicula turpis sagittis
- Duis eu neque eu tellus ultrices gravida
Task
- [x] Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- [x] Ut eu elit at eros gravida consequat.
- [x] Nulla pharetra elit non risus semper scelerisque.
- [ ] Duis ut ex ac dolor pretium consequat.Output
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
- Ut eu elit at eros gravida consequat.
- Nulla pharetra elit non risus semper scelerisque.
- Duis ut ex ac dolor pretium consequat.
Alerts
> [!note]
> Great design is making something intelligible, not memorable.
> [!tip]
> Efficiency is doing things right; effectiveness is doing the right things.
> [!important]
> Focus on the signal, ignore the noise.
> [!warning]
> An ounce of prevention is worth a pound of cure.
> [!caution]
> Look before you leap, for as you love, you may stumble.
> [!search]
> The only mistake is not looking for what you need.
> [!assignment]
> The secret of getting ahead is getting started.
> [!lab]
> Mistakes are the portals of discovery.
> [!recap]
> To understand the future, you must learn from the past.
> [!note] **Customized** _title_
> Great design is making something intelligible, not memorable.Output
Great design is making something intelligible, not memorable.
Efficiency is doing things right; effectiveness is doing the right things.
Focus on the signal, ignore the noise.
An ounce of prevention is worth a pound of cure.
Look before you leap, for as you love, you may stumble.
The only mistake is not looking for what you need.
The secret of getting ahead is getting started.
Mistakes are the portals of discovery.
To understand the future, you must learn from the past.
Great design is making something intelligible, not memorable.
Tables
| DATA TYPE | MIN | MAX |
| --------- | --- | --------------------------------------- |
| u8 | 0 | 255 |
| u16 | 0 | 65535 |
| u32 | 0 | 4294967295 |
| u64 | 0 | 18446744073709551615 |
| u128 | 0 | 340282366920938463463374607431768211455 |Output
| DATA TYPE | MIN | MAX |
|---|---|---|
| u8 | 0 | 255 |
| u16 | 0 | 65535 |
| u32 | 0 | 4294967295 |
| u64 | 0 | 18446744073709551615 |
| u128 | 0 | 340282366920938463463374607431768211455 |