Skip to content

Commit 57634a6

Browse files
committed
docs: update readme
Signed-off-by: Abiola Ibrahim <[email protected]>
1 parent c72dc23 commit 57634a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Mold builds on [Go templates](https://pkg.go.dev/text/template) to provide a sim
1111

1212
Mold offers the following, making it an ideal choice for Go projects.
1313

14-
- **Lightweight**: uses only the Go standard lib with no external dependencies.
14+
- **Lightweight**: uses only the Go standard library with no external dependencies.
1515
- **Efficient**: utilises Go's in-built template parser under the hood.
1616
- **Capable**: supports all capabilities of Go templates.
1717
- **Familiar**: employs the well-known [concepts](#concepts) of Layouts, Views and Partials.
@@ -121,7 +121,8 @@ By default, the view's data context is used.
121121
Sections allow content to be rendered in specific parts of the layout.
122122
They are defined within views with a `define` block.
123123

124-
The [default layout](https://github.com/abiosoft/mold/blob/main/layout.html) is able to render HTML content within the `<head>` tag by utilising the `head` section.
124+
The [default layout](https://github.com/abiosoft/mold/blob/main/layout.html) is able to render HTML content within
125+
the `<head>` tag by utilising the `head` section.
125126

126127
```html
127128
{{define "scripts"}}
@@ -132,10 +133,9 @@ The [default layout](https://github.com/abiosoft/mold/blob/main/layout.html) is
132133

133134
## Why not standard Go templates?
134135

135-
Go templates, while simple and powerful, can feel unfamiliar when dealing with multiple template files to structure
136-
a web app.
136+
Go templates, while simple and powerful, can feel unfamiliar when dealing with multiple template files.
137137

138-
Mold addresses this by providing an intuitive and conventional higher-level use of Go templates.
138+
Mold addresses this by providing an intuitive framework for structuring web applications with Go templates.
139139

140140
## License
141141

0 commit comments

Comments
 (0)