-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull link-checking fix for name attribute
- Loading branch information
1 parent
e08ef39
commit f44d383
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,27 +5,27 @@ export type { SiteMetadata }; | |
export type { PostMetadata }; | ||
export { validate as validateSiteMetadata } from "./schema/site.ts"; | ||
export { validate as validatePostMetadata } from "./schema/post.ts"; | ||
export { Goldsmith } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
export type { GoldsmithPlugin, GoldsmithFile } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
export { goldsmithJSONMetadata } from "https://deno.land/x/[email protected].0/plugins/json_metadata/mod.ts"; | ||
export { goldsmithFrontMatter } from "https://deno.land/x/[email protected].0/plugins/front_matter/mod.ts"; | ||
export { goldsmithExcludeDrafts } from "https://deno.land/x/[email protected].0/plugins/exclude_drafts/mod.ts"; | ||
export { goldsmithFileMetadata } from "https://deno.land/x/[email protected].0/plugins/file_metadata/mod.ts"; | ||
export { goldsmithIndex } from "https://deno.land/x/[email protected].0/plugins/index/mod.ts"; | ||
export { goldsmithCollections } from "https://deno.land/x/[email protected].0/plugins/collections/mod.ts"; | ||
export { goldsmithInjectFiles } from "https://deno.land/x/[email protected].0/plugins/inject_files/mod.ts"; | ||
export { goldsmithMarkdown } from "https://deno.land/x/[email protected].0/plugins/markdown/mod.ts"; | ||
export { goldsmithRootPaths } from "https://deno.land/x/[email protected].0/plugins/root_paths/mod.ts"; | ||
export { goldsmithLayout } from "https://deno.land/x/[email protected].0/plugins/layout/mod.ts"; | ||
export { goldsmithLayoutLiteralHTML } from "https://deno.land/x/[email protected].0/plugins/layout/literal_html.ts"; | ||
export type { GoldsmithLiteralHTMLLayoutContext, GoldsmithLiteralHTMLLayoutCallback, GoldsmithLiteralHTMLLayoutMap } from "https://deno.land/x/[email protected].0/plugins/layout/literal_html.ts"; | ||
export { goldsmithWatch } from "https://deno.land/x/[email protected].0/plugins/watch/mod.ts"; | ||
export { goldsmithServe } from "https://deno.land/x/[email protected].0/plugins/serve/mod.ts"; | ||
export { goldsmithFeed } from "https://deno.land/x/[email protected].0/plugins/feed/mod.ts"; | ||
export { goldsmithLinkChecker } from "https://deno.land/x/[email protected].0/plugins/link_checker/mod.ts"; | ||
export { Goldsmith } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
export type { GoldsmithPlugin, GoldsmithFile } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
export { goldsmithJSONMetadata } from "https://deno.land/x/[email protected].1/plugins/json_metadata/mod.ts"; | ||
export { goldsmithFrontMatter } from "https://deno.land/x/[email protected].1/plugins/front_matter/mod.ts"; | ||
export { goldsmithExcludeDrafts } from "https://deno.land/x/[email protected].1/plugins/exclude_drafts/mod.ts"; | ||
export { goldsmithFileMetadata } from "https://deno.land/x/[email protected].1/plugins/file_metadata/mod.ts"; | ||
export { goldsmithIndex } from "https://deno.land/x/[email protected].1/plugins/index/mod.ts"; | ||
export { goldsmithCollections } from "https://deno.land/x/[email protected].1/plugins/collections/mod.ts"; | ||
export { goldsmithInjectFiles } from "https://deno.land/x/[email protected].1/plugins/inject_files/mod.ts"; | ||
export { goldsmithMarkdown } from "https://deno.land/x/[email protected].1/plugins/markdown/mod.ts"; | ||
export { goldsmithRootPaths } from "https://deno.land/x/[email protected].1/plugins/root_paths/mod.ts"; | ||
export { goldsmithLayout } from "https://deno.land/x/[email protected].1/plugins/layout/mod.ts"; | ||
export { goldsmithLayoutLiteralHTML } from "https://deno.land/x/[email protected].1/plugins/layout/literal_html.ts"; | ||
export type { GoldsmithLiteralHTMLLayoutContext, GoldsmithLiteralHTMLLayoutCallback, GoldsmithLiteralHTMLLayoutMap } from "https://deno.land/x/[email protected].1/plugins/layout/literal_html.ts"; | ||
export { goldsmithWatch } from "https://deno.land/x/[email protected].1/plugins/watch/mod.ts"; | ||
export { goldsmithServe } from "https://deno.land/x/[email protected].1/plugins/serve/mod.ts"; | ||
export { goldsmithFeed } from "https://deno.land/x/[email protected].1/plugins/feed/mod.ts"; | ||
export { goldsmithLinkChecker } from "https://deno.land/x/[email protected].1/plugins/link_checker/mod.ts"; | ||
export { version } from "./version.ts"; | ||
|
||
declare module "https://deno.land/x/[email protected].0/mod.ts" { | ||
declare module "https://deno.land/x/[email protected].1/mod.ts" { | ||
interface GoldsmithMetadata { | ||
site?: SiteMetadata; | ||
tagsAll?: string[]; | ||
|