Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade for marked v8 #47

Merged
merged 4 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 135 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deps/marked.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { marked } from "npm:marked@7.0.5";
export { marked } from "npm:marked@8.0.1";
12 changes: 6 additions & 6 deletions deps/std.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
export { parse as flagsParse } from "https://deno.land/std@0.200.0/flags/mod.ts";
export { parse as flagsParse } from "https://deno.land/std@0.201.0/flags/mod.ts";

export {
extract as fmExtract,
test as fmTest,
} from "https://deno.land/std@0.200.0/front_matter/any.ts";
} from "https://deno.land/std@0.201.0/front_matter/any.ts";

export {
emptyDirSync,
ensureDir,
ensureDirSync,
walk,
type WalkEntry,
} from "https://deno.land/std@0.200.0/fs/mod.ts";
} from "https://deno.land/std@0.201.0/fs/mod.ts";

export { serve as httpServe } from "https://deno.land/std@0.200.0/http/server.ts";
export { serve as httpServe } from "https://deno.land/std@0.201.0/http/server.ts";

export {
basename,
Expand All @@ -23,6 +23,6 @@ export {
isAbsolute,
join,
relative,
} from "https://deno.land/std@0.200.0/path/mod.ts";
} from "https://deno.land/std@0.201.0/path/mod.ts";

export { readableStreamFromReader } from "https://deno.land/std@0.200.0/streams/mod.ts";
export { readableStreamFromReader } from "https://deno.land/std@0.201.0/streams/mod.ts";
4 changes: 2 additions & 2 deletions docs/gfm.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ Inline code inside table cells should still be distinguishable.

Small images should be shown at their actual size.

![Bridge](img/img-small.jpg)
![Bridge](/img/img-small.jpg)

Large images should always scale down and fit in the content container.

<figure>
<img src="img/img-large.jpg">
<img src="/img/img-large.jpg">
<figcaption>This a figcaption</figcaption>
</figure>
Loading
Loading