11 lines
204 B
Go
11 lines
204 B
Go
package html
|
|
|
|
import (
|
|
"code.squareroundforest.org/arpio/textedit"
|
|
"io"
|
|
)
|
|
|
|
func newIndentWriter(out io.Writer, indent string) *textedit.Writer {
|
|
return textedit.New(out, textedit.Indent("", indent))
|
|
}
|