-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- feat: Add strikethrough support with mdast-util-gfm-strikethrough - chore: Update mdast-util-from-markdown to 1.2.0 - chore: Update snapper to 0.0.6 - refactor: some code formatting
- Loading branch information
Showing
12 changed files
with
4,856 additions
and
4,813 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
export * as colors from 'https://deno.land/[email protected]/fmt/colors.ts'; | ||
|
||
// import * as mdast from 'https://jspm.dev/[email protected]'; | ||
import {mdast} from './mdast-util-from-markdown@0_8_4-shimmed.js'; | ||
export type mdastFromMarkdownFn = (markdown: string, encodig?: any, options?: {extensions?: any[], mdastExtensions?: any[]}) => any; | ||
export const fromMarkdown: mdastFromMarkdownFn = mdast as mdastFromMarkdownFn; | ||
import { mdast, gfmStrikethroughFromMarkdown, gfmStrikethrough } from './mdast-util-from-markdown@1_2_0-shimmed.js'; | ||
export const strikethroughExt = gfmStrikethroughFromMarkdown; | ||
export const strike = gfmStrikethrough; | ||
export type mdastFromMarkdownFn = (markdown: string, encodig?: string, options?: {extensions?: any[], mdastExtensions?: any[]}) => any; | ||
export const fromMarkdown: mdastFromMarkdownFn = mdast; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 +1,4 @@ | ||
import {snap} from 'https://deno.land/x/[email protected].5/mod.ts'; | ||
import {snap} from 'https://deno.land/x/[email protected].6/mod.ts'; | ||
import { renderMarkdown } from "../mod.ts"; | ||
|
||
// Usage: | ||
|
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.