adoc/formatter/formatter.go

12 lines
200 B
Go
Raw Normal View History

2022-06-11 09:30:22 +02:00
package formatter
import (
"ewintr.nl/adoc/document"
"ewintr.nl/adoc/element"
)
type Formatter interface {
Format(doc *document.Document) string
FormatFragments(els ...element.Element) string
}