diff --git a/docs/extensions/development.md b/docs/extensions/development.md index c89ae8a1f..6ab15364d 100644 --- a/docs/extensions/development.md +++ b/docs/extensions/development.md @@ -112,8 +112,6 @@ PGlite's frontend code is in the main [PGlite repo](https://github.com/electric- You will need to create a new package for your extension. The easiest way is to just copy the files from an existing extension package such as `packages/pglite-pgvector`. Obviously, you will need to adapt all the references to the previous extension. -``` - To make it available in our online [REPL](https://pglite.dev/repl/), add the extension to `docs/repl/allExtensions.ts`: ``` @@ -186,4 +184,3 @@ As mentioned before, some extensions require more effort to integrate with PGlit Another source of pain for building an extension is the need to export symbols from the dependencies or from PGlite itself. Sometimes these are obvious only at runtime. We are still working on documentation and examples showing how to build more complex Postgres extensions for use with PGlite. Please check back soon, or reach out on [Discord](https://discord.com/channels/933657521581858818/1212676471588520006) if you would like to try building a particular extension for PGlite. -```