Merge commit 'a3535c8486b2ce762b1a8a9c30b03985c3e02cee'

This commit is contained in:
Bjørn Erik Pedersen
2018-07-19 09:18:11 +02:00
10 changed files with 319 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
---
title: Asset minification
description: Hugo Pipes allows the minification of any CSS, JS, JSON, HTML, SVG or XML resource.
date: 2018-07-14
publishdate: 2018-07-14
lastmod: 2018-07-14
categories: [asset management]
keywords: []
menu:
docs:
parent: "pipes"
weight: 50
weight: 50
sections_weight: 50
draft: false
---
Any resource of the aforementioned types can be minifed using `resources.Minify` which takes for argument the resource object.
```go-html-template
{{ $css := resources.Get "css/main.css" }}
{{ $style := $css | resources.Minify }}
```