Skip to content

Commit d04e1ea

Browse files
committed
fixes url achors having HAHAHUGOSHORTCODE in them
1 parent 1a0e754 commit d04e1ea

21 files changed

+60
-22
lines changed

website/content/cookbook/auto-tls.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ message with TLS enabled on the website.
2323

2424
{{< embed "auto-tls/server.go" >}}
2525

26-
## [Source Code]({{< source "auto-tls" >}})
26+
## Source Code
27+
28+
[See]({{< source "auto-tls" >}})

website/content/cookbook/cors.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ description = "CORS recipe for Echo"
1919

2020
{{< embed "cors/origin-func/server.go" >}}
2121

22-
## [Source Code]({{< source "cors" >}})
22+
## Source Code
23+
24+
[See]({{< source "cors" >}})

website/content/cookbook/crud.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,6 @@ curl -X DELETE localhost:1323/users/1
7777

7878
`NoContent - 204`
7979

80-
## [Source Code]({{< source "crud" >}})
80+
## Source Code
8181

82+
[See]({{< source "crud" >}})

website/content/cookbook/embed-resources.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ description = "Embed resources recipe for Echo"
1212

1313
{{< embed "embed/server.go" >}}
1414

15-
## [Source Code]({{< source "embed" >}})
15+
## Source Code
16+
17+
[See]({{< source "embed" >}})
1618

1719
## With go.rice
1820

1921
`server.go`
2022

2123
{{< embed "embed-resources/server.go" >}}
2224

23-
## [Source Code]({{< source "embed-resources" >}})
25+
## Source Code
26+
27+
[See]({{< source "embed-resources" >}})

website/content/cookbook/google-app-engine.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,7 @@ switching between AppEngine provided service such as Datastore and alternative s
128128
such as MongoDB. A combination of go interfaces and build constraints can make this fairly straightforward
129129
but is outside the scope of this example.
130130

131-
## [Source Code]({{< source "google-app-engine" >}})
131+
## Source Code
132+
133+
[See]({{< source "google-app-engine" >}})
132134

website/content/cookbook/graceful-shutdown.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ description = "Graceful shutdown recipe for Echo"
1414

1515
> Requires go1.8+
1616
17-
## [Source Code]({{< source "graceful-shutdown" >}})
17+
## Source Code
18+
19+
[See]({{< source "graceful-shutdown" >}})

website/content/cookbook/hello-world.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ description = "Hello world recipe for Echo"
1212

1313
{{< embed "hello-world/server.go" >}}
1414

15-
## [Source Code]({{< source "hello-world" >}})
15+
## Source Code
1616

17+
[See]({{< source "hello-world" >}})

website/content/cookbook/http2-server-push.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ Method: GET
7272
Path: /
7373
```
7474

75-
## [Source Code]({{< source "http2-server-push" >}})
75+
## Source Code
76+
77+
[See]({{< source "http2-server-push" >}})
7678

7779
`index.html`
7880

website/content/cookbook/http2.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ Method: GET
6969
Path: /
7070
```
7171

72-
## [Source Code]({{< source "http2" >}})
72+
## Source Code
73+
74+
[See]({{< source "http2" >}})
7375

7476
`server.go`
7577

website/content/cookbook/jsonp.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ JSONP is a method that allows cross-domain server calls. You can read more about
2020

2121
{{< embed "jsonp/public/index.html" >}}
2222

23-
## [Source Code]({{< source "jsonp" >}})
23+
## Source Code
2424

25+
[See]({{< source "jsonp" >}})

0 commit comments

Comments
 (0)