-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
183 additions
and
209 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// @ts-nocheck | ||
// deno-lint-ignore-file -- The plugin is deprecated in favour of: https://lume.land/plugins/sitemap/ | ||
|
||
export * as XMLFormat from 'npm:[email protected]' |
3 changes: 3 additions & 0 deletions
3
plugins/atom-feed/mod.ts → plugins/_deprecated/atom-feed/mod.ts
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// @ts-nocheck | ||
// deno-lint-ignore-file -- The plugin is deprecated in favour of: https://www.npmjs.com/package/rehype-slug-anchor-sectionize | ||
import type { Element, Root } from 'npm:@types/[email protected]' | ||
import { | ||
findAfter, | ||
|
@@ -6,7 +8,7 @@ import { | |
toString as hastToString, | ||
unified, | ||
visit, | ||
} from '../deps.ts' | ||
} from '../../unified/deps.ts' | ||
|
||
export interface RehypeSlugAnchorSectionizeOptions { | ||
/** The heading level depth to sectionize. defaults to `3` */ | ||
|
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -3,8 +3,8 @@ export { default as rehypeSanitize } from 'npm:[email protected]' | |
export { default as rehypeStringify } from 'npm:[email protected]' | ||
export { default as remarkGfm } from 'npm:[email protected]' | ||
export { default as remarkParse } from 'npm:[email protected]' | ||
export { default as remarkRehype } from 'npm:remark-rehype@11.0.0' | ||
export * as unified from 'npm:[email protected].3' | ||
export { default as remarkRehype } from 'npm:remark-rehype@11.1.0' | ||
export * as unified from 'npm:[email protected].5' | ||
|
||
export { default as readingTime } from 'https://esm.sh/[email protected]?bundle' | ||
|
||
|
@@ -13,14 +13,14 @@ export { default as rehypeCodeTitles } from 'npm:[email protected]' | |
export { default as rehypeExternalLinks } from 'npm:[email protected]' | ||
export { default as rehypeMinifyWhitespace } from 'npm:[email protected]' | ||
export { default as rehypePrismDiff } from 'npm:[email protected]' | ||
export { default as rehypePrismPlus } from 'npm:[email protected]' | ||
export { default as rehypePrismPlus } from 'npm:[email protected]' | ||
export { default as rehypeSlugAnchorSectionize } from 'npm:[email protected]' | ||
|
||
export { slug } from 'npm:[email protected]' | ||
export { toString } from 'npm:[email protected]' | ||
export { findAfter } from 'npm:[email protected]' | ||
export { CONTINUE, EXIT, SKIP, visit } from 'npm:[email protected]' | ||
|
||
export { default as rehypeCopyCode } from '#plugins/unified/rehype/rehypeCopyCode.ts' | ||
export { default as rehypeImgSize } from 'npm:[email protected]' | ||
export type { Test } from 'npm:[email protected]' | ||
export { default as rehypeCopyCode } from './rehype/rehypeCopyCode.ts' | ||
export { default as rehypeSlugAnchorSectionize } from './rehype/slug.ts' |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { readingTime } from '../deps.ts' | ||
import { readingTime, unified } from '#plugins/unified/deps.ts' | ||
|
||
export default [ | ||
export default <unified.PluggableList> [ | ||
[readingTime, { name: 'readingTime' }], | ||
] |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.