mirror of https://github.com/vapor/docs.git
FIX: Markdown visual line break for 'queues.md' files (#1020)
### 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.
This commit is contained in:
parent
c4213e4817
commit
79b5656434
|
|
@ -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)
|
||||
|
||||
|
|
@ -150,8 +151,10 @@ struct EmailJob: AsyncJob {
|
|||
}
|
||||
}
|
||||
```
|
||||
|
||||
!!! info
|
||||
`Payload` 型が `Codable` プロトコルを実装していることを確認してください。
|
||||
|
||||
!!! tip
|
||||
**Getting Started** の指示に従って、このジョブを設定ファイルに追加することを忘れないでください。
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
@ -153,6 +154,7 @@ struct EmailJob: AsyncJob {
|
|||
|
||||
!!! info "信息"
|
||||
确保你的 `Payload` 类型遵循 `Codable` 协议。
|
||||
|
||||
!!! tip "建议"
|
||||
不要忘记按照**入门**中的说明将此 job 添加到你的配置文件中。
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue