func ReadString(r io.Reader) (string, error)
func SendString(w io.Writer, str string) error
type Inliner struct { // contains filtered or unexported fields }
Inliner represents a instance of a Inliner
func MakeInliner() (*Inliner, error)
func (i *Inliner) Inline(msgs string) (chan Outcome, error)
func (i *Inliner) InlineBlock(msgs string) chan Outcome
type Outcome struct { Msg string Errors string }