Skip to content

Commit

Permalink
fix doc link
Browse files Browse the repository at this point in the history
  • Loading branch information
will-wow committed Mar 10, 2024
1 parent c136f13 commit 05748cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Well-documented Go functions for building [HTMX](https://htmx.org) attributes.

[![Go Reference](https://pkg.go.dev/badge/github.com/will-wow/typed-htmx-go.svg)](https://pkg.go.dev/github.com/will-wow/typed-htmx-go/hx)
[![Go Reference](https://pkg.go.dev/badge/github.com/will-wow/typed-htmx-go.svg)](https://pkg.go.dev/github.com/will-wow/typed-htmx-go/htmx)
![Code Coverage](./assets/badge.svg)

[htmx](https://htmx.org) is a powerful and simple tool for building dynamic, server-rendered web applications. It also pairs particularly well with [Templ](https://templ.guide) (a JSX-like template language for Go) and [Gomponents](https://www.gomponents.com/) (a Go-native view library).
Expand Down
2 changes: 1 addition & 1 deletion examples/web/layout/gom/layout/layout.gom.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func nav() g.Node {
Ul(
Li(
A(
Href("https://pkg.go.dev/github.com/will-wow/typed-htmx-go/hx"),
Href("https://pkg.go.dev/github.com/will-wow/typed-htmx-go/htmx"),
Target("_blank"),
Rel("noopener"),
g.Text("Docs"),
Expand Down
2 changes: 1 addition & 1 deletion examples/web/layout/templ/layout/layout.templ
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ templ nav() {
<ul>
<li>
<a
href="https://pkg.go.dev/github.com/will-wow/typed-htmx-go/hx"
href="https://pkg.go.dev/github.com/will-wow/typed-htmx-go/htmx"
target="_blank"
rel="noopener"
>
Expand Down

0 comments on commit 05748cb

Please sign in to comment.