Skip to content

Commit

Permalink
Pull non-link anchor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredkrinke committed Oct 9, 2023
1 parent 34b4477 commit 4dc4b5a
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/goldsmith@1.3.0/mod.ts";
export type { GoldsmithPlugin, GoldsmithFile } from "https://deno.land/x/goldsmith@1.3.0/mod.ts";
export { goldsmithJSONMetadata } from "https://deno.land/x/goldsmith@1.3.0/plugins/json_metadata/mod.ts";
export { goldsmithFrontMatter } from "https://deno.land/x/goldsmith@1.3.0/plugins/front_matter/mod.ts";
export { goldsmithExcludeDrafts } from "https://deno.land/x/goldsmith@1.3.0/plugins/exclude_drafts/mod.ts";
export { goldsmithFileMetadata } from "https://deno.land/x/goldsmith@1.3.0/plugins/file_metadata/mod.ts";
export { goldsmithIndex } from "https://deno.land/x/goldsmith@1.3.0/plugins/index/mod.ts";
export { goldsmithCollections } from "https://deno.land/x/goldsmith@1.3.0/plugins/collections/mod.ts";
export { goldsmithInjectFiles } from "https://deno.land/x/goldsmith@1.3.0/plugins/inject_files/mod.ts";
export { goldsmithMarkdown } from "https://deno.land/x/goldsmith@1.3.0/plugins/markdown/mod.ts";
export { goldsmithRootPaths } from "https://deno.land/x/goldsmith@1.3.0/plugins/root_paths/mod.ts";
export { goldsmithLayout } from "https://deno.land/x/goldsmith@1.3.0/plugins/layout/mod.ts";
export { goldsmithLayoutLiteralHTML } from "https://deno.land/x/goldsmith@1.3.0/plugins/layout/literal_html.ts";
export type { GoldsmithLiteralHTMLLayoutContext, GoldsmithLiteralHTMLLayoutCallback, GoldsmithLiteralHTMLLayoutMap } from "https://deno.land/x/goldsmith@1.3.0/plugins/layout/literal_html.ts";
export { goldsmithWatch } from "https://deno.land/x/goldsmith@1.3.0/plugins/watch/mod.ts";
export { goldsmithServe } from "https://deno.land/x/goldsmith@1.3.0/plugins/serve/mod.ts";
export { goldsmithFeed } from "https://deno.land/x/goldsmith@1.3.0/plugins/feed/mod.ts";
export { goldsmithLinkChecker } from "https://deno.land/x/goldsmith@1.3.0/plugins/link_checker/mod.ts";
export { Goldsmith } from "https://deno.land/x/goldsmith@1.4.0/mod.ts";
export type { GoldsmithPlugin, GoldsmithFile } from "https://deno.land/x/goldsmith@1.4.0/mod.ts";
export { goldsmithJSONMetadata } from "https://deno.land/x/goldsmith@1.4.0/plugins/json_metadata/mod.ts";
export { goldsmithFrontMatter } from "https://deno.land/x/goldsmith@1.4.0/plugins/front_matter/mod.ts";
export { goldsmithExcludeDrafts } from "https://deno.land/x/goldsmith@1.4.0/plugins/exclude_drafts/mod.ts";
export { goldsmithFileMetadata } from "https://deno.land/x/goldsmith@1.4.0/plugins/file_metadata/mod.ts";
export { goldsmithIndex } from "https://deno.land/x/goldsmith@1.4.0/plugins/index/mod.ts";
export { goldsmithCollections } from "https://deno.land/x/goldsmith@1.4.0/plugins/collections/mod.ts";
export { goldsmithInjectFiles } from "https://deno.land/x/goldsmith@1.4.0/plugins/inject_files/mod.ts";
export { goldsmithMarkdown } from "https://deno.land/x/goldsmith@1.4.0/plugins/markdown/mod.ts";
export { goldsmithRootPaths } from "https://deno.land/x/goldsmith@1.4.0/plugins/root_paths/mod.ts";
export { goldsmithLayout } from "https://deno.land/x/goldsmith@1.4.0/plugins/layout/mod.ts";
export { goldsmithLayoutLiteralHTML } from "https://deno.land/x/goldsmith@1.4.0/plugins/layout/literal_html.ts";
export type { GoldsmithLiteralHTMLLayoutContext, GoldsmithLiteralHTMLLayoutCallback, GoldsmithLiteralHTMLLayoutMap } from "https://deno.land/x/goldsmith@1.4.0/plugins/layout/literal_html.ts";
export { goldsmithWatch } from "https://deno.land/x/goldsmith@1.4.0/plugins/watch/mod.ts";
export { goldsmithServe } from "https://deno.land/x/goldsmith@1.4.0/plugins/serve/mod.ts";
export { goldsmithFeed } from "https://deno.land/x/goldsmith@1.4.0/plugins/feed/mod.ts";
export { goldsmithLinkChecker } from "https://deno.land/x/goldsmith@1.4.0/plugins/link_checker/mod.ts";
export { version } from "./version.ts";

declare module "https://deno.land/x/goldsmith@1.3.0/mod.ts" {
declare module "https://deno.land/x/goldsmith@1.4.0/mod.ts" {
interface GoldsmithMetadata {
site?: SiteMetadata;
tagsAll?: string[];
Expand Down

0 comments on commit 4dc4b5a

Please sign in to comment.