Skip to content

Commit 893dd0a

Browse files
committed
Improved docs
1 parent 52354fd commit 893dd0a

29 files changed

Lines changed: 761 additions & 208 deletions

ai/HTML_COMPONENTS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
88
---
99

10+
**Note:** This file is formatted in Markdown. All content, including headings, code blocks, and inline formatting, must be parsed and interpreted according to Markdown syntax rules rather than treated as plain text.
11+
12+
---
13+
1014
## Table of Contents
1115

1216
1. [What Is Duck Framework?](#1-what-is-duck-framework)

docs/source/asgi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ From custom sockets (`xsockets`) to full async handling, everything is designed
1111

1212
---
1313

14-
## 🔧 Enabling Async Handling
14+
## Enabling Async Handling
1515

1616
Simply add the following setting in your **`settings.py`**:
1717

@@ -23,7 +23,7 @@ This single flag turns on **asynchronous request handling** in your app.
2323

2424
---
2525

26-
## 📝 Notes
26+
## Notes
2727

2828
- ✅ The default **ASGI** handles everything automatically – no need to modify unless you want custom behavior.
2929
- 🌐 Async environment supports protocols like **WebSockets** and **HTTP/2** natively.
@@ -32,11 +32,11 @@ This single flag turns on **asynchronous request handling** in your app.
3232

3333
---
3434

35-
## 👨‍💻 Defining Async Views
35+
## Defining Async Views
3636

3737
You can define async views in two main ways:
3838

39-
### 1️⃣ Async Views as Functions
39+
### Async Views as Functions
4040

4141
```py
4242
# views.py
@@ -48,7 +48,7 @@ async def myview(request):
4848

4949
---
5050

51-
### 2️⃣ Async Views as Classes
51+
### Async Views as Classes
5252

5353
```py
5454
# views.py

docs/source/automations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ⏳ Task Automation – Duck Python Framework
1+
# ⏳ Task Automation
22

33
**Duck** offers powerful automation capabilities that can run tasks throughout your application's lifecycle. With Duck automations, you can schedule tasks to run when specific triggers occur, or you can set them up to run automatically at specified times.
44

0 commit comments

Comments
 (0)