Skip to content

Commit

Permalink
FIX: Markdown visual line break for 'queues.md' files (#1020)
Browse files Browse the repository at this point in the history
### Line break for options:

Added a visual line break to separate the header "Some text options:"
from the list items. This ensures proper Markdown rendering and improves
readability.

---

### Before:

Some text options:
- Example 1
- Example 2

**Rendered as:**
Some text options:  - Example 1 - Example 2

---

### After:

Some text options:
(line break added)
- Example 1
- Example 2

**Rendered as:**
Some text options:
- Example 1
- Example 2

---

### Consistent visual rendering across other Markdown elements:

This change introduces a similar visual line break strategy for
informational blocks.
These adjustments ensure uniformity, improve Markdown rendering, and
maintain a cleaner visual structure across various platforms.
  • Loading branch information
TheHandyOwl authored Dec 9, 2024
1 parent c4213e4 commit 79b5656
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/advanced/queues.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Queues には、メインプロトコルとインターフェースする正式
- [QueuesRedisDriver](https://github.com/vapor/queues-redis-driver)

また、コミュニティベースのドライバもあります:

- [QueuesMongoDriver](https://github.com/vapor-community/queues-mongo-driver)
- [QueuesFluentDriver](https://github.com/m-barthelemy/vapor-queues-fluent-driver)

Expand Down Expand Up @@ -150,8 +151,10 @@ struct EmailJob: AsyncJob {
}
}
```

!!! info
`Payload` 型が `Codable` プロトコルを実装していることを確認してください。

!!! tip
**Getting Started** の指示に従って、このジョブを設定ファイルに追加することを忘れないでください。

Expand Down
3 changes: 3 additions & 0 deletions docs/advanced/queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Queues currently has one officially supported driver which interfaces with the m
- [QueuesRedisDriver](https://github.com/vapor/queues-redis-driver)

Queues also has community-based drivers:

- [QueuesMongoDriver](https://github.com/vapor-community/queues-mongo-driver)
- [QueuesFluentDriver](https://github.com/m-barthelemy/vapor-queues-fluent-driver)

Expand Down Expand Up @@ -150,8 +151,10 @@ struct EmailJob: AsyncJob {
}
}
```

!!! info
Make sure your `Payload` type implements the `Codable` protocol.

!!! tip
Don't forget to follow the instructions in **Getting Started** to add this job to your configuration file.

Expand Down
2 changes: 2 additions & 0 deletions docs/advanced/queues.nl.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Queues heeft momenteel één officieel ondersteund stuurprogramma dat een interf
- [QueuesRedisDriver](https://github.com/vapor/queues-redis-driver)

Queues heeft ook community-based drivers:

- [QueuesMongoDriver](https://github.com/vapor-community/queues-mongo-driver)
- [QueuesFluentDriver](https://github.com/m-barthelemy/vapor-queues-fluent-driver)

Expand Down Expand Up @@ -153,6 +154,7 @@ struct EmailJob: AsyncJob {

!!! info
Zorg ervoor dat uw `Payload` type het `Codable` protocol implementeert.

!!! tip
Vergeet niet de instructies in **Aan De Slag** te volgen om deze taak aan uw configuratiebestand toe te voegen.

Expand Down
2 changes: 2 additions & 0 deletions docs/advanced/queues.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Vapor Queues ([vapor/queues](https://github.com/vapor/queues)) 是一个纯 Swif
- [QueuesRedisDriver](https://github.com/vapor/queues-redis-driver)

Queues 也有基于社区的驱动程序:

- [QueuesMongoDriver](https://github.com/vapor-community/queues-mongo-driver)
- [QueuesFluentDriver](https://github.com/m-barthelemy/vapor-queues-fluent-driver)

Expand Down Expand Up @@ -153,6 +154,7 @@ struct EmailJob: AsyncJob {

!!! info "信息"
确保你的 `Payload` 类型遵循 `Codable` 协议。

!!! tip "建议"
不要忘记按照**入门**中的说明将此 job 添加到你的配置文件中。

Expand Down

0 comments on commit 79b5656

Please sign in to comment.