2013-09-18 18:55:46 -06:00
|
|
|
package present
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"html/template"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Register("html", parseHTML)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseHTML(ctx *Context, fileName string, lineno int, text string) (Elem, error) {
|
|
|
|
p := strings.Fields(text)
|
|
|
|
if len(p) != 2 {
|
|
|
|
return nil, errors.New("invalid .html args")
|
|
|
|
}
|
|
|
|
name := filepath.Join(filepath.Dir(fileName), p[1])
|
|
|
|
b, err := ctx.ReadFile(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-03-09 20:20:35 -06:00
|
|
|
return HTML{text, template.HTML(b)}, nil
|
2013-09-18 18:55:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
type HTML struct {
|
2020-03-09 20:20:35 -06:00
|
|
|
Cmd string // original command from present source
|
2013-09-18 18:55:46 -06:00
|
|
|
template.HTML
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:20:35 -06:00
|
|
|
func (s HTML) PresentCmd() string { return s.Cmd }
|
2013-09-18 18:55:46 -06:00
|
|
|
func (s HTML) TemplateName() string { return "html" }
|