-
Notifications
You must be signed in to change notification settings - Fork 37
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
1 parent
e10f8ee
commit 4730621
Showing
3 changed files
with
12 additions
and
11 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 |
---|---|---|
|
@@ -3,13 +3,14 @@ | |
/// <reference lib="dom.iterable" /> | ||
/// <reference lib="dom.asynciterable" /> | ||
/// <reference lib="deno.ns" /> | ||
/// <reference lib="deno.unstable" /> | ||
|
||
export { emojify } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
export { default as marked } from "https://esm.sh/[email protected]"; | ||
export { default as marked } from "https://esm.sh/[email protected]?pin=v57"; | ||
|
||
export * as Prism from "https://esm.sh/[email protected]"; | ||
export { default as Prism } from "https://esm.sh/[email protected]?pin=v57"; | ||
|
||
export { default as sanitizeHtml } from "https://esm.sh/[email protected]"; | ||
export { default as sanitizeHtml } from "https://esm.sh/[email protected]?pin=v57"; | ||
|
||
export { escape as htmlEscape } from "https://esm.sh/[email protected]"; | ||
export { escape as htmlEscape } from "https://esm.sh/[email protected]?pin=v57"; |
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 |
---|---|---|
|
@@ -2,12 +2,12 @@ import { listenAndServe } from "https://deno.land/[email protected]/http/server.ts"; | |
|
||
import { CSS, render } from "../mod.ts"; | ||
|
||
import "https://esm.sh/[email protected]/components/prism-jsx?no-check"; | ||
import "https://esm.sh/[email protected]/components/prism-typescript?no-check"; | ||
import "https://esm.sh/[email protected]/components/prism-tsx?no-check"; | ||
import "https://esm.sh/[email protected]/components/prism-bash?no-check"; | ||
import "https://esm.sh/[email protected]/components/prism-powershell?no-check"; | ||
import "https://esm.sh/[email protected]/components/prism-json?no-check"; | ||
import "https://esm.sh/[email protected]/components/prism-jsx?no-check&pin=v57"; | ||
import "https://esm.sh/[email protected]/components/prism-typescript?no-check&pin=v57"; | ||
import "https://esm.sh/[email protected]/components/prism-tsx?no-check&pin=v57"; | ||
import "https://esm.sh/[email protected]/components/prism-bash?no-check&pin=v57"; | ||
import "https://esm.sh/[email protected]/components/prism-powershell?no-check&pin=v57"; | ||
import "https://esm.sh/[email protected]/components/prism-json?no-check&pin=v57"; | ||
|
||
const CONTENT_PATH = new URL("./content.md", import.meta.url); | ||
|
||
|
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