Skip to content
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
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ The [Playground](https://mqlang.org/playground) lets you run mq queries in the b

### Web API

You can try mq without installing anything via the hosted REST API at https://api.mqlang.org.
You can try mq without installing anything via the hosted REST API at [https://api.mqlang.org](https://api.mqlang.org).

The interactive API documentation is available at [Swagger UI](https://api.mqlang.org/docs).

Expand All @@ -186,13 +186,7 @@ The interactive API documentation is available at [Swagger UI](https://api.mqlan

## Language Bindings

Language bindings are available for the following programming languages:

- [mq_elixir](https://github.com/harehare/mq_elixir)
- [mq-python](https://github.com/harehare/mq-python)
- [mq-ruby](https://github.com/harehare/mq-ruby)
- [mq-java](https://github.com/harehare/mq-java)
- [mq-go](https://github.com/harehare/mq-go)
Language bindings are available for Elixir, Python, Ruby, Java, and Go. See the [Language Bindings documentation](https://mqlang.org/book/start/language_bindings.html) for details.

## Usage

Expand Down
1 change: 1 addition & 0 deletions docs/books/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- [MCP](start/mcp.md)
- [Debugger](start/debugger.md)
- [External Subcommands](start/external_subcommands.md)
- [Language Bindings](start/language_bindings.md)
- [Example](start/example.md)
- [Reference](reference/index.md)
- [CLI](reference/cli.md)
Expand Down
4 changes: 4 additions & 0 deletions docs/books/src/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
<loc>https://mqlang.org/book/start/external_subcommands</loc>
<priority>1.0</priority>
</url>
<url>
<loc>https://mqlang.org/book/start/language_bindings</loc>
<priority>1.0</priority>
</url>
<url>
<loc>https://mqlang.org/book/start/example</loc>
<priority>1.0</priority>
Expand Down
13 changes: 13 additions & 0 deletions docs/books/src/start/language_bindings.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Language Bindings

mq provides official language bindings for several programming languages, allowing you to integrate mq's Markdown processing capabilities directly into your applications.

## Available Bindings

| Language | Repository |
|----------|-----------|
| Elixir | [mq_elixir](https://github.com/harehare/mq_elixir) |
| Python | [mq-python](https://github.com/harehare/mq-python) |
| Ruby | [mq-ruby](https://github.com/harehare/mq-ruby) |
| Java | [mq-java](https://github.com/harehare/mq-java) |
| Go | [mq-go](https://github.com/harehare/mq-go) |
Loading