const autoImportedComponentDefinition = `/**
* DO NOT EDIT THIS FILE MANUALLY.
*
- * This file is automatically generated by the Boostrap Astro Integration.
+ * This file is automatically generated by the Bootstrap Astro Integration.
* It contains the type definitions for the components that are auto imported in all pages.
* @see site/src/libs/astro.ts
*/
// This is useful to catch typos in docs paths.
// Note: this function is only called during a production build.
// Note: this could at some point be refactored to use Astro list of generated `routes` accessible in the
-// `astro:build:done` integration hook. Altho as of 03/14/2023, this is not possible due to the route's data only
-// containing informations regarding the last page generated page for dynamic routes.
+// `astro:build:done` integration hook. Although as of 03/14/2023, this is not possible due to the route's data only
+// containing information regarding the last page generated page for dynamic routes.
// @see https://github.com/withastro/astro/issues/5802
export function validateVersionedDocsPaths(distUrl: URL) {
const { docs_version } = getConfig()
*/
markup: 'img' | 'svg'
/**
- * The text to show in the image. You can explicitely pass the `false` boolean value (and not the string "false") to
+ * The text to show in the image. You can explicitly pass the `false` boolean value (and not the string "false") to
* hide the text.
* @default "${width}x{$height)"
*/
text: string | false
/**
- * Used in the SVG `title` tag. You can explicitely pass the `false` boolean value (and not the string "false") to
+ * Used in the SVG `title` tag. You can explicitly pass the `false` boolean value (and not the string "false") to
* hide the title.
* @default "Placeholder"
*/
}
}
-// A remark plugin to add versionned docs links in markdown (or MDX) files.
+// A remark plugin to add versioned docs links in markdown (or MDX) files.
// For example, [[docsref:/foo]] will be replaced with the `/docs/${docs_version}/foo` value with the `docs_version`
// value being read from the `config.yml` file.
// Note: this also works in frontmatter.