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

adding shortcode to the plain text #2608

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
50 changes: 44 additions & 6 deletions content/ecosystem/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,47 @@ title = "The Matrix Ecosystem"
sort_by = "weight"
+++

* [Clients](clients) – The Matrix ecosystem is vibrant. Whatever platform you use, someone has probably already developed a client for it.
* [Hosting](hosting) – Everyone can host their Matrix server, but not everybody wants to. These are the providers the Matrix.org Foundation knows about.
* [Servers](servers) – Advanced users may want to run a homeserver by themselves for more independence and sovereignty. Here are the servers advanced users can run.
* [Bridges](bridges) – Bridges allow you to connect Matrix to a third-party platform, and interact seamlessly.
* [Integrations](integrations) – Useful integrations for more productive or fun conversations in the Matrix ecosystem.
* [SDKs](sdks) – Develop great apps, bots, and bridges. Focus on what you do best. Let the SDKs do all the heavy lifting.
---
title: "The Matrix Ecosystem"
sort_by: "weight"
---

{{#list items}}
* [{{title}}]({{link}}) – {{description}}
{{/list}}

<!-- Define the items array below -->
{{#set items}}
[
{
"title": "Clients",
"link": "clients",
"description": "The Matrix ecosystem is vibrant. Whatever platform you use, someone has probably already developed a client for it."
},
{
"title": "Hosting",
"link": "hosting",
"description": "Everyone can host their Matrix server, but not everybody wants to. These are the providers the Matrix.org Foundation knows about."
},
{
"title": "Servers",
"link": "servers",
"description": "Advanced users may want to run a homeserver by themselves for more independence and sovereignty. Here are the servers advanced users can run."
},
{
"title": "Bridges",
"link": "bridges",
"description": "Bridges allow you to connect Matrix to a third-party platform, and interact seamlessly."
},
{
"title": "Integrations",
"link": "integrations",
"description": "Useful integrations for more productive or fun conversations in the Matrix ecosystem."
},
{
"title": "SDKs",
"link": "sdks",
"description": "Develop great apps, bots, and bridges. Focus on what you do best. Let the SDKs do all the heavy lifting."
}
]
{{/set}}
Loading