diff options
author | Paul Valladares | 2024-06-13 04:03:28 -0600 |
---|---|---|
committer | GitHub | 2024-06-13 12:03:28 +0200 |
commit | 40a69ded45ce673dbbbfb8fb80626cc10c2e1195 (patch) | |
tree | 783c6a70de851661b4e2ae3af078867fe1618269 | |
parent | ae6b00d8418865e39cc0ce56df0834a1f7b4c2a4 (diff) | |
download | IT.starlight-40a69ded45ce673dbbbfb8fb80626cc10c2e1195.tar.gz IT.starlight-40a69ded45ce673dbbbfb8fb80626cc10c2e1195.tar.bz2 IT.starlight-40a69ded45ce673dbbbfb8fb80626cc10c2e1195.zip |
i18n(es): update `configuration` (#1998)
Co-authored-by: HiDeoo <494699+HiDeoo@users.noreply.github.com>
-rw-r--r-- | docs/src/content/docs/es/reference/configuration.mdx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/src/content/docs/es/reference/configuration.mdx b/docs/src/content/docs/es/reference/configuration.mdx index 2f0981ac..1c530d5e 100644 --- a/docs/src/content/docs/es/reference/configuration.mdx +++ b/docs/src/content/docs/es/reference/configuration.mdx @@ -215,7 +215,8 @@ type SidebarItem = { ```ts interface BadgeConfig { text: string; - variant: 'note' | 'tip' | 'caution' | 'danger' | 'success' | 'default'; + variant?: 'note' | 'tip' | 'caution' | 'danger' | 'success' | 'default'; + class?: string; } ``` @@ -568,3 +569,13 @@ starlight({ ``` Consulta la [Referencia de Plugins](/es/reference/plugins/) para obtener detalles sobre cómo crear tus propios plugins. + +### `credits` + +Habilita la visualización de un enlace “Hecho con Starlight” en el pie de página de tu sitio. + +```js +starlight({ + credits: true, +}); +``` |