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
2024-11-29 22:40:03 -05:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
19cb6c7819
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 16:04:28 -04:00
package
transform
import
(
"io"
)
Rename Transform to AbsURL
2013-10-01 15:56:27 -04: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 17:42:08 -04:00
Apply
(
io
.
Writer
,
io
.
Reader
)
error
Rename Transform to AbsURL
2013-10-01 15:56:27 -04:00
}
Reference in a new issue
Copy permalink