Skip to content

Adds redirects to the sidebars #13334

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

Merged
merged 1 commit into from
May 31, 2022
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
4 changes: 2 additions & 2 deletions docs/integrations/sources/sftp.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ Key pair is created (typically by the user). This is typically done with ssh-key
Private key stays with the user (and only there), while the public key is sent to the server. Typically with the ssh-copy-id utility.
Server stores the public key (and "marks" it as authorized).
Server will now allow access to anyone who can prove they have the corresponding private key.
## Step 2: Set up the <connector name> connector in Airbyte
## Step 2: Set up the `$CONNECTOR_NAME` connector in Airbyte
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

JSX (a part of the docusuaurs language) uses HTML like tags. It see <literally anything> in between < and > as valid code, so it sees <connector name> as an opening tag that is missing </connector> as a closing tag.

this error shows up as Expected corresponding JSX closing tag for </connector> not found.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Amruta-Ranade this is the weirdness I was talking about

@suhomud tagging you for a heads up on this oddity of docusuaurs, feel free to change my edits in a future PR. thanks for your contributions <3


### For Airbyte Cloud:

1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account.
2. In the left navigation bar, click **<Sources>**. In the top-right corner, click **+new source**.
2. In the left navigation bar, click **`Sources`**. In the top-right corner, click **+new source**.
3. On the Set up the source page, enter the name for the SFTP connector and select **SFTP** from the Source type dropdown.
4. Enter your `User Name`, `Host Address`, `Port`
5. Choose the `Authentication` type `Password Authentication` or `Key Authentication`
Expand Down
6 changes: 5 additions & 1 deletion docusaurus/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,16 @@ module.exports = {
},
{
type: 'category',
label: 'Contributing to Airbyte Docs',
label: 'Documentation Help',
items: [
{
type: 'doc',
id: "docusaurus/contributing_to_docs",
},
{
type: 'doc',
id: "docusaurus/making_a_redirect",
},
{
type: 'doc',
id: "docusaurus/deploying_and_reverting_docs",
Expand Down