Skip to content

Commit

Permalink
docs(website): move support matrix under reference
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed Jun 21, 2024
1 parent 5337593 commit d9fca48
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ website:
- text: "Tutorial"
href: tutorial/index.qmd
- sidebar:reference
- text: "Support Matrix"
href: support_matrix.qmd
tools:
- icon: github
menu:
Expand Down Expand Up @@ -82,6 +80,10 @@ website:
- reference/steps-temporal.qmd
- reference/steps-other.qmd

- section: Support
contents:
- reference/support-matrix/index.qmd

format:
html:
theme:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ varies:
1. ✅ Fully supported
2. 🚫 Not supported
3. 🟡 Partial support (hover over for more information)
4. 🔍 Support varies by operation or data type across different backends (check [operation support matrix](https://ibis-project.org/support_matrix) for details)
4. 🔍 Support varies by operation or data type across different backends (check the [Ibis operation support matrix](https://ibis-project.org/backends/support/matrix) for details)

:::
:::
Expand Down Expand Up @@ -65,11 +65,10 @@ dict(value=len(ibis.util.backend_entry_points()) - 3, color="green", icon="datab
```{python}
from itables import show
from support_matrix import make_support_matrix
import re
matrix = make_support_matrix()
def custom_replace(value):
if value is True:
return "✅"
Expand All @@ -80,10 +79,11 @@ def custom_replace(value):
else:
return f"<span title='Support: {value}'>🟡</span>"
show(
matrix.applymap(custom_replace),
ordering=False,
paging=False,
buttons=["copy", "excel", "csv"],
)
```
```
File renamed without changes.
File renamed without changes.

0 comments on commit d9fca48

Please sign in to comment.