Update Readme
This commit is contained in:
parent
e0d54debd7
commit
0d1fe9ee1c
98
README.md
98
README.md
@ -1,88 +1,10 @@
|
|||||||
# Markdown Showcase - The Developer's Guide
|
# Hello World!
|
||||||
*Created for W2Wizard on 2025-04-16*
|
Hello World!
|
||||||
|
Hello World!
|
||||||
## 📋 Table of Contents
|
Hello World!
|
||||||
- [Headers](#headers)
|
Hello World!
|
||||||
- [Text Styling](#text-styling)
|
Hello World!
|
||||||
- [Lists](#lists)
|
Hello World!
|
||||||
- [Code](#code)
|
Hello World!
|
||||||
|
Hello World!
|
||||||
## Headers
|
Hello World!
|
||||||
# Main Heading (H1)
|
|
||||||
## Second Level (H2)
|
|
||||||
### Third Level (H3)
|
|
||||||
#### Fourth Level (H4)
|
|
||||||
##### Fifth Level (H5)
|
|
||||||
###### Sixth Level (H6)
|
|
||||||
|
|
||||||
## Lists
|
|
||||||
### Ordered List
|
|
||||||
1. First item
|
|
||||||
2. Second item
|
|
||||||
1. Nested item
|
|
||||||
2. Another nested item
|
|
||||||
3. Third item
|
|
||||||
|
|
||||||
### Unordered List
|
|
||||||
- Item one
|
|
||||||
- Item two
|
|
||||||
* Nested with asterisk
|
|
||||||
+ Nested with plus
|
|
||||||
- Item three
|
|
||||||
|
|
||||||
### Task List
|
|
||||||
- [x] Completed task
|
|
||||||
- [ ] Pending task
|
|
||||||
- [ ] @W2Wizard assigned task
|
|
||||||
|
|
||||||
## Code
|
|
||||||
```ts
|
|
||||||
// C# code block with syntax highlighting
|
|
||||||
services.AddAuthorizationBuilder()
|
|
||||||
.AddPolicy("IsCreator", policy =>
|
|
||||||
policy.RequireClaim(ClaimTypes.Role, "creator"));
|
|
||||||
```
|
|
||||||
|
|
||||||
## Links & Images
|
|
||||||
[GitHub](https://github.com)
|
|
||||||

|
|
||||||
|
|
||||||
## Tables
|
|
||||||
| Feature | Supported | Notes |
|
|
||||||
|---------|:---------:|-------|
|
|
||||||
| Tables | ✅ | Left, center, right alignment with `:` |
|
|
||||||
| Images | ✅ | No native resizing |
|
|
||||||
| Emojis | ✅ | 🚀 🔥 💻 |
|
|
||||||
|
|
||||||
## Quotes & Notes
|
|
||||||
> This is a blockquote
|
|
||||||
>
|
|
||||||
> It can span multiple lines
|
|
||||||
|
|
||||||
> Nested quotes
|
|
||||||
>> Work like this
|
|
||||||
|
|
||||||
## Advanced Features
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Click to expand details section</summary>
|
|
||||||
|
|
||||||
Hidden content appears here! Great for FAQs or long explanations.
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### Definition Lists
|
|
||||||
Term
|
|
||||||
: Definition goes here
|
|
||||||
|
|
||||||
### Math Equations (with MathJax/KaTeX support)
|
|
||||||
When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ given by:
|
|
||||||
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}$$
|
|
||||||
|
|
||||||
### Diagrams (with Mermaid support)
|
|
||||||
```mermaid
|
|
||||||
graph TD;
|
|
||||||
A[Start] -->|Process| B[End];
|
|
||||||
A -->|Alternative| C[Result];
|
|
||||||
```
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user