Skip to content

Commit 54c4226

Browse files
committed
chore: fix markdown headline rendering
1 parent a509f7b commit 54c4226

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

docs/latest/examples/session-management.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ associate a random UUID with a request. We will use the global
3030
to generate a random UUID and the [`@std/http`](https://jsr.io/@std/http)
3131
package to evaluate the cookies.
3232

33-
> It is
34-
35-
### Creating a _session_ cookie
33+
### Creating a cookie
3634

3735
```ts
3836
import { setCookie } from "@std/http";
@@ -51,7 +49,7 @@ _session_ with a random UUID as its value using `setCookie`.
5149
Adding this headers-object to a response will make the browser attach the cookie
5250
to the headers in every request.
5351

54-
### Retrieving a _session_ cookie
52+
### Retrieving a cookie
5553

5654
```ts
5755
import { getCookies } from "@std/http";

docs/toc.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import FRESH_VERSIONS_1x from "../versions.json" with { type: "json" };
2-
import LATEST_VERSION_2 from "../packages/fresh/deno.json" with {
3-
type: "json",
4-
};
2+
import LATEST_VERSION_2 from "../packages/fresh/deno.json" with { type: "json" };
53

64
type RawTableOfContents = Record<
75
string,
@@ -100,6 +98,7 @@ const toc: RawTableOfContents = {
10098
"link:latest",
10199
],
102100
["active-links", "Active links", "link:latest"],
101+
["session-management", "Session management", "link:latest"],
103102
],
104103
},
105104
},

0 commit comments

Comments
 (0)