adoc/formatter/formatter.go

12 lines
214 B
Go
Raw Permalink Normal View History

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