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

fix: doc images broken links #326

Merged
merged 1 commit into from
Aug 8, 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
2 changes: 1 addition & 1 deletion docs/guides/create-wasm-wrapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ git push origin v0.2.0

This will trigger a GitHub workflow to build the package and create a release on your repo. It may take a few minutes:

![GitHub Build](/wrappers/assets/wasm-build.png)
![GitHub Build](../assets/wasm-build.png)

After the GitHub action has completed, expand the `Create README.txt` step, which will have your installation instructions at the bottom - something like:

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/query-pushdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Query pushdown is a technique that enhances query performance by executing parts

Query pushdown is a technique that enhances query performance by executing parts of the query directly on the data source. It reduces data transfer between the database and the application, enabling faster execution and improved performance.

![assets/query-pushdown-dark.png](/wrappers/assets/query-pushdown-dark.png)
![assets/query-pushdown-dark.png](../assets/query-pushdown-dark.png)

### Using Query Pushdown

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/wasm-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In this example, we're going to create a Wrapper that can query a Google Sheet.

You should have your own Google Sheet:

![Google Sheet](/wrappers/assets/google-sheet.png)
![Google Sheet](../assets/google-sheet.png)

## Rename your Wrapper

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ returns

Postgres FDWs introduce the concept of a "remote server" and "foreign table":

![FDW](/wrappers/assets/fdw-light.png)
![FDW](assets/fdw-light.png)

### Remote servers

Expand Down
Loading