Skip to content

Commit

Permalink
site: update docusaurus and unbreak the documentation site
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraettinger committed Feb 20, 2024
1 parent 7a29fb3 commit d30fe1e
Show file tree
Hide file tree
Showing 5 changed files with 8,715 additions and 9,907 deletions.
1 change: 1 addition & 0 deletions site/docs/concepts/advanced/evolutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ To keep things simple in this article, we'll be referring only to captures and m
:::

import Mermaid from '@theme/Mermaid';

<Mermaid chart={`
graph LR;
Source[Source System]-->Capture;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ See [connectors](../../../concepts/connectors.md#using-connectors) to learn more
| `/credentials/credentials` | Credentials method | Type of credentials used. Set to `api-token` | string | |
| `/credentials/email` | Email | The user email for your Zendesk account. | string | |
| **`/start_date`** | Start Date | The date from which you&#x27;d like to replicate data for Zendesk Support API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this date will be replicated. | string | Required |
| **`/subdomain`** | Subdomain | This is your Zendesk subdomain that can be found in your account URL. For example, in https:&#x2F;&#x2F;{MY&#x5F;SUBDOMAIN}.zendesk.com&#x2F;, where MY&#x5F;SUBDOMAIN is the value of your subdomain. | string | Required |
| **`/subdomain`** | Subdomain | This is your Zendesk subdomain that can be found in your account URL. For example, in `https://MY_SUBDOMAIN.zendesk.com/`, where `MY_SUBDOMAIN` is the value of your subdomain. | string | Required |

#### Bindings

Expand Down
8 changes: 5 additions & 3 deletions site/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
const codeImport = require('remark-code-import');
import { themes } from 'prism-react-renderer';
import { codeImport } from 'remark-code-import'

const lightCodeTheme = themes.github;
const darkCodeTheme = themes.dracula;

const BASE_URL = process.env.BASE_URL || "/"
const URL = process.env.URL || "https://docs.estuary.dev"
Expand Down
Loading

0 comments on commit d30fe1e

Please sign in to comment.