123456789101112131415161718192021222324252627282930 |
- package text
- import (
- "github.com/kpmy/odf/model"
- "github.com/kpmy/odf/xmlns"
- )
- const (
- P model.LeafName = "text:p"
- S model.LeafName = "text:s"
- LineBreak model.LeafName = "text:line-break"
- Tab model.LeafName = "text:tab"
- Span model.LeafName = "text:span"
- )
- const (
- C model.AttrName = "text:c"
- StyleName model.AttrName = "text:style-name"
- AnchorType model.AttrName = "text:anchor-type"
- )
- const (
- Paragraph = "parahraph"
- )
- func init() {
- xmlns.Typed[C] = xmlns.INT
- xmlns.Typed[AnchorType] = xmlns.ENUM
- xmlns.Enums[AnchorType] = []string{Paragraph}
- }
|