40 lines
670 B
Go
40 lines
670 B
Go
package ansi
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// An ImageElement is used to render images elements.
|
|
type ImageElement struct {
|
|
Text string
|
|
BaseURL string
|
|
URL string
|
|
Child ElementRenderer // FIXME
|
|
}
|
|
|
|
func (e *ImageElement) Render(w io.Writer, ctx RenderContext) error {
|
|
if len(e.Text) > 0 {
|
|
el := &BaseElement{
|
|
Token: e.Text,
|
|
Style: ctx.options.Styles.ImageText,
|
|
}
|
|
err := el.Render(w, ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if len(e.URL) > 0 {
|
|
el := &BaseElement{
|
|
Token: resolveRelativeURL(e.BaseURL, e.URL),
|
|
Prefix: " ",
|
|
Style: ctx.options.Styles.Image,
|
|
}
|
|
err := el.Render(w, ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|