From ceaa1870197d71d9b9bc169ff1244e0207afb21c Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Fri, 1 Mar 2024 13:02:01 -0800 Subject: [PATCH] update readme --- package/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package/README.md b/package/README.md index b494c9e..8488c01 100644 --- a/package/README.md +++ b/package/README.md @@ -14,6 +14,8 @@ The Only Requirement to install this package is a **Github account with a Verifi This Integration uses [`Octokit`](http://octokit.github.io/) by `GitHub` to Generate custom gists using [`ExpressiveCode`](https://expressive-code.com/) within your Astro project! +This Integration currently includes `@astrojs/mdx` and is enabled by default. + ### Installation Install the integration **automatically** using the Astro CLI: @@ -55,7 +57,9 @@ import { defineConfig } from "astro/config"; // https://astro.build/config export default defineConfig({ + integrations: [astroGist({ -+ MDXIntegration: true // This is the default option and will enable or disable @astrojs/mdx + // OPTIONAL CONFIG OPTIONS + // Enable the Astrojs/MDX Integration - Default: true + MDXIntegration: true + })] }); ```