Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Markdown visual line break for 'queues.md' files #1020

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading