-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
210 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Cloned from https://github.com/TileDB-Inc/tiledb-quarto-template | ||
|
||
name: Render and deploy Quarto files | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
quarto-render-and-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: "Install Quarto" | ||
uses: quarto-dev/quarto-actions/install-quarto@main | ||
with: | ||
version: 0.9.141 | ||
|
||
- name: "Quarto render" | ||
shell: bash | ||
run: | | ||
quarto render --execute-debug | ||
- name: "Deploy to gh-pages" | ||
uses: peaceiris/actions-gh-pages@v3 | ||
# Change to the name of your repo's primary branch name: | ||
if: github.ref == 'refs/heads/main' | ||
with: | ||
# This is GitHub Actions magic; no secrets for us to manage; and this works first-time | ||
# without any extra configs other than visiting Settings -> Pages in your GitHub repo. | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs | ||
destination_dir: docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Cloned from https://github.com/TileDB-Inc/tiledb-quarto-template | ||
project: | ||
type: website | ||
output-dir: docs | ||
|
||
format: | ||
html: | ||
toc: true | ||
theme: | ||
light: [flatly, "quarto-materials/tiledb.scss"] | ||
mainfont: Helvetica | ||
fontsize: 1rem | ||
linkcolor: "#4d9fff" | ||
code-copy: true | ||
code-overflow: wrap | ||
css: "quarto-materials/tiledb.css" | ||
|
||
website: | ||
favicon: "images/favicon.ico" | ||
repo-url: https://github.com/TileDB-Inc/TileDB | ||
page-navigation: true | ||
navbar: | ||
background: light | ||
logo: "quarto-materials/tiledb-logo.png" | ||
collapse-below: lg | ||
left: | ||
- text: "Home page" | ||
href: "https://tiledb.com" | ||
- text: "Contact us" | ||
href: "https://tiledb.com/contact" | ||
- text: "Repo" | ||
href: "https://github.com/TileDB-Inc/TileDB" | ||
|
||
sidebar: | ||
- id: placeholder | ||
title: "" | ||
style: "floating" | ||
collapse-level: 2 | ||
align: left | ||
|
||
contents: | ||
- href: 'index.md' | ||
|
||
- section: 'Format Specification' | ||
href: "format_spec/FORMAT_SPEC.md" | ||
contents: | ||
- section: 'Array' | ||
contents: | ||
- href: "format_spec/array_file_hierarchy.md" | ||
- href: "format_spec/array_schema.md" | ||
- href: "format_spec/fragment.md" | ||
- href: "format_spec/array_metadata.md" | ||
- href: "format_spec/tile.md" | ||
- href: "format_spec/generic_tile.md" | ||
- section: 'Group' | ||
contents: | ||
- href: "format_spec/group_file_hierarchy.md" | ||
- section: 'Other' | ||
contents: | ||
- href: "format_spec/consolidated_fragment_metadata_file.md" | ||
- href: "format_spec/filter_pipeline.md" | ||
- href: "format_spec/vacuum_file.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Public code docs | ||
|
||
This is public documentation of the code within this repository. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
Cloned from https://github.com/TileDB-Inc/tiledb-quarto-template | ||
tiledb light blue #4d9fff | ||
tiledb dark blue #0a2580 | ||
*/ | ||
|
||
.navbar-nav:hover .nav-link:hover { | ||
color: #0a2580; | ||
} | ||
|
||
.sidebar-navigation .text-start { | ||
font-weight: bold; | ||
} | ||
|
||
.sidebar.sidebar-navigation .active { | ||
/* | ||
color: #800000; | ||
background-color: #e0e0e0; | ||
*/ | ||
} | ||
|
||
.sidebar.sidebar-navigation .active, .sidebar.sidebar-navigation .show>.nav-link { | ||
/*color: #0a2580;*/ | ||
color: #4d9fff; | ||
background-color: #e0e0e0; | ||
padding-left: 4px; | ||
padding-right: 4px; | ||
} | ||
|
||
a { | ||
color: #4d9fff; | ||
} | ||
a:before, a:focus, a:hover, a:link, a:visited { | ||
color: #4d9fff; | ||
} | ||
|
||
code, p code:not(.sourceCode), li code:not(.sourceCode), kbd, pre { | ||
color: #000000; | ||
background-color: #f0f0f0; | ||
font-size: 12px; | ||
direction: ltr; | ||
border-radius: 3px; | ||
} | ||
|
||
pre { | ||
font-size: 12px; | ||
padding: 10px; | ||
text-decoration: none; | ||
|
||
white-space: pre-wrap; /* css-3 */ | ||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ | ||
white-space: -pre-wrap; /* Opera 4-6 */ | ||
white-space: -o-pre-wrap; /* Opera 7 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
Cloned from https://github.com/TileDB-Inc/tiledb-quarto-template | ||
tiledb light blue #4d9fff | ||
tiledb dark blue #0a2580 | ||
*/ | ||
|
||
/*-- scss:defaults --*/ | ||
/* | ||
$navbar-bg: #800000; | ||
$navbar-fg: #eeeeee; | ||
$sidebar-fg: #800000; | ||
$footer-bg: #800000; | ||
$footer-fg: #eeeeee; | ||
*/ | ||
|
||
/*-- scss:rules --*/ | ||
h1, h2, h3 { | ||
font-weight: 600; /* semibold */ | ||
/* | ||
color: #4d9fff; | ||
background-color: #e0e0e0; | ||
*/ | ||
border-radius: 6px; | ||
padding: 6px; | ||
} |