This website requires JavaScript.
Explore
Help
Sign In
mirror
/
gohugoio-hugo
Watch
1
Star
0
Fork
0
You've already forked gohugoio-hugo
mirror of
https://github.com/gohugoio/hugo.git
synced
2024-05-11 05:54:58 +00:00
Code
Issues
Releases
Activity
gohugoio-hugo
/
transform
/
post.go
10 lines
103 B
Go
Raw
Normal View
History
Unescape
Escape
Add a transform step This allows for the manipulation of the DOM. This is expected to be applied after the templates are rendered.
2013-09-17 13:04:28 -07:00
package
transform
import
(
"io"
)
Rename Transform to AbsURL
2013-10-01 12:56:27 -07:00
type
Transformer
interface
{
Apply
(
io
.
Reader
,
io
.
Writer
)
error
}
Copy Permalink