From fb44327daf2e73131e6f381b71d2f4ce3f571ef9 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Sat, 24 Feb 2024 01:52:04 -0800 Subject: [PATCH] Update JSDocs --- package/README.md | 4 ++-- package/src/components/GetGist.astro | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package/README.md b/package/README.md index 3d47fd7..df63049 100644 --- a/package/README.md +++ b/package/README.md @@ -89,5 +89,5 @@ import { GetGist } from "@matthiesenxyz/astro-gists/components" ## Acknowledgements -[`Octokit`](http://octokit.github.io) by GitHub -[`Expressive-Code`](https://expressive-code.com/) By Hippotasic \ No newline at end of file +- [`Octokit`](http://octokit.github.io) by GitHub +- [`Expressive-Code`](https://expressive-code.com/) By Hippotasic \ No newline at end of file diff --git a/package/src/components/GetGist.astro b/package/src/components/GetGist.astro index 3fb610f..2c86e80 100644 --- a/package/src/components/GetGist.astro +++ b/package/src/components/GetGist.astro @@ -11,6 +11,9 @@ export interface Props { * @default true */ showLineNumbers?: boolean; + /** OPTIONAL: Allows the user to Enable and Disable LineWrapping + * @default true + */ wrap?: boolean; }