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

Remove ref to deleted teleporter docs #1788

Merged
merged 3 commits into from
Jun 25, 2024
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
39 changes: 0 additions & 39 deletions configs/remoteContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,45 +226,6 @@ ${updatedContent}`,
},
},
],
[
"docusaurus-plugin-remote-content",
{
// /docs/build/cross-chain/teleporter/getting-started.md
name: "hello-teleporter",
sourceBaseUrl:
"https://raw.githubusercontent.com/ava-labs/teleporter/main/contracts/src/CrossChainApplications/",
documents: ["GETTING_STARTED.md"],
outDir: "docs/build/cross-chain/teleporter/",
// change file name and add metadata correct links
modifyContent(filename, content) {
if (filename.includes("GETTING_STARTED")) {
const updatedContent = replaceRelativeLinks(
content,
"https://github.com/ava-labs/teleporter/blob/main/contracts/src/CrossChainApplications/"
);

const newContent = insertLinesAfterFirstLine(
updatedContent,
teleporterCourse
);

return {
filename: "getting-started.md",
content: `---
tags: [Teleporter, Cross-Subnet Communication, Cross-Chain Communication]
description: Teleporter is an EVM-compatible cross-subnet communication protocol built on top of Avalanche Warp Messaging.This section walks through how to build an example cross-chain application on top of the Avalanche Teleporter Protocol.
keywords: [ docs, documentation, avalanche, teleporter, awm, cross-subnet communication, cross-chain, cross-chain communication ]
sidebar_label: Getting Started
sidebar_position: 3
---

${newContent}`,
};
}
return undefined;
},
},
],
[
"docusaurus-plugin-remote-content",
{
Expand Down
3 changes: 1 addition & 2 deletions docs/build/cross-chain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ pagination_label: Cross Chain Quick Links
| Teleporter | |
| :---------------------------------------------------------------------- | :---------------------------------------------------------------------------------- |
| [**Overview**](/build/cross-chain/teleporter/overview.md) | Overview of Teleporter |
| [**Deep Dive**](/build/cross-chain/teleporter/deep-dive.md) | Deep Dive into Teleporter |
| [**Getting Started**](/build/cross-chain/teleporter/getting-started.md) | Getting Started with an Example Teleporter Application |
| [**Deep Dive**](/build/cross-chain/teleporter/deep-dive.md) | Deep Dive into Teleporter | |
| [**Upgradeability**](/build/cross-chain/teleporter/upgradeability.md) | Understand how gateways defined with Teleporter can and cannot be changed over time |
| [**CLI**](/build/cross-chain/teleporter/cli.md) | Interact with the Teleporter Contracts via a command line interface |
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@ pagination_label: Enlaces Rápidos de Cadena Cruzada

# 🔗 Enlaces Rápidos de Cadena Cruzada

| Avalanche Warp Messaging | |
| :--------------------------------------------------------------- | :------------------------------------------------------- |
| [**Visión General**](/build/cross-chain/awm/overview.md) | Visión general de la Mensajería de Warp Avalanche |
| [**Profundidad**](/build/cross-chain/awm/deep-dive.md) | Profundización en la Mensajería de Warp Avalanche |
| [**Integración EVM**](/build/cross-chain/awm/evm-integration.md) | Integración de la Mensajería de Warp Avalanche en la EVM |
| Mensajería de Warp Avalanche | |
| :--------------------------------------------------------------- | :------------------------------------------------ |
| [**Visión General**](/build/cross-chain/awm/overview.md) | Visión general de la Mensajería de Warp Avalanche |
| [**Profundidad**](/build/cross-chain/awm/deep-dive.md) | Profundidad en la Mensajería de Warp Avalanche |
| [**Integración EVM**](/build/cross-chain/awm/evm-integration.md) | Integrando la Mensajería de Warp Avalanche en la EVM |

| Teleporter | |
| :-------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------- |
| [**Visión General**](/build/cross-chain/teleporter/overview.md) | Visión general de Teleporter |
| [**Profundidad**](/build/cross-chain/teleporter/deep-dive.md) | Profundización en Teleporter |
| [**Empezando**](/build/cross-chain/teleporter/getting-started.md) | Empezando con una Aplicación de Teleporter de Ejemplo |
| [**Capacidad de Actualización**](/build/cross-chain/teleporter/upgradeability.md) | Comprenda cómo las pasarelas definidas con Teleporter pueden y no pueden cambiarse con el tiempo |
| [**CLI**](/build/cross-chain/teleporter/cli.md) | Interactúe con los Contratos de Teleporter a través de una interfaz de línea de comandos |
| Teleporter | |
| :---------------------------------------------------------------------- | :---------------------------------------------------------------------------------- |
| [**Visión General**](/build/cross-chain/teleporter/overview.md) | Visión general de Teleporter |
| [**Profundidad**](/build/cross-chain/teleporter/deep-dive.md) | Profundidad en Teleporter | |
| [**Capacidad de Actualización**](/build/cross-chain/teleporter/upgradeability.md) | Comprenda cómo las pasarelas definidas con Teleporter pueden y no pueden cambiarse con el tiempo |
| [**CLI**](/build/cross-chain/teleporter/cli.md) | Interactúa con los contratos de Teleporter a través de una interfaz de línea de comandos |
Loading