import type { Dirent } from "node:fs"; import type { Page } from "@sphido/core"; export { getHashtags } from "./get-hashtags.js"; export { tagsToMarkdown } from "./tags-to-markdown.js"; /** * Fields the `hashtags` extender adds to a page. * * When combined with the `frontmatter` extender, the runtime merges * frontmatter tags and hashtags into a single `Set`. * * Usage: `type BlogPage = Page & WithHashtags;` */ export type WithHashtags = { tags?: Set; }; /** * Replace hashtags in markdown with links */ export declare function hashtags(page: Page, dirent: Dirent): Promise; //# sourceMappingURL=hashtags.d.ts.map