This website requires JavaScript.
Explore
Help
Sign in
github
/
hugo
Watch
1
Star
0
Fork
You've already forked hugo
0
mirror of
https://github.com/gohugoio/hugo.git
synced
2025-03-04 04:34:04 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
6fa6f69a4a
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 20:04:28 +00:00
package
transform
import
(
"io"
)
Rename Transform to AbsURL
2013-10-01 19:56:27 +00:00
type
Transformer
interface
{
Change the order of Apply to be more Unixy Typically the destination is on the left and the src is on the right.
2013-10-01 21:42:08 +00:00
Apply
(
io
.
Writer
,
io
.
Reader
)
error
Rename Transform to AbsURL
2013-10-01 19:56:27 +00:00
}
Reference in a new issue
Copy permalink