From 79b565643411d52a8b3b6833a13ab69651152bee Mon Sep 17 00:00:00 2001 From: TheHandyOwl <24987271+TheHandyOwl@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:11:48 +0100 Subject: [PATCH] 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. --- docs/advanced/queues.ja.md | 3 +++ docs/advanced/queues.md | 3 +++ docs/advanced/queues.nl.md | 2 ++ docs/advanced/queues.zh.md | 2 ++ 4 files changed, 10 insertions(+) diff --git a/docs/advanced/queues.ja.md b/docs/advanced/queues.ja.md index b5ae9c60..37aa7394 100644 --- a/docs/advanced/queues.ja.md +++ b/docs/advanced/queues.ja.md @@ -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** の指示に従って、このジョブを設定ファイルに追加することを忘れないでください。 diff --git a/docs/advanced/queues.md b/docs/advanced/queues.md index 98868d0b..38de3dd4 100644 --- a/docs/advanced/queues.md +++ b/docs/advanced/queues.md @@ -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. diff --git a/docs/advanced/queues.nl.md b/docs/advanced/queues.nl.md index 0a5d4345..22012d86 100644 --- a/docs/advanced/queues.nl.md +++ b/docs/advanced/queues.nl.md @@ -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. diff --git a/docs/advanced/queues.zh.md b/docs/advanced/queues.zh.md index ef577eef..85ecb2d9 100644 --- a/docs/advanced/queues.zh.md +++ b/docs/advanced/queues.zh.md @@ -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 添加到你的配置文件中。