// copy creates a copy of this PageOutput with the lazy sync.Once vars reset
// so they will be evaluated again, for word count calculations etc.
-func (p *PageOutput) copy() *PageOutput {
- c, err := newPageOutput(p.Page, true, p.outputFormat)
+func (p *PageOutput) copyWithFormat(f output.Format) (*PageOutput, error) {
+ c, err := newPageOutput(p.Page, true, f)
if err != nil {
- panic(err)
+ return nil, err
}
c.paginator = p.paginator
- return c
+ return c, nil
+}
+
+func (p *PageOutput) copy() (*PageOutput, error) {
+ return p.copyWithFormat(p.outputFormat)
}
func (p *PageOutput) layouts(layouts ...string) ([]string, error) {
}
p.pageOutputInit.Do(func() {
+ if p.mainPageOutput != nil {
+ return
+ }
// If Render is called in a range loop, the page output isn't available.
// So, create one.
outFormat := p.outputFormats[0]
)
if i == 0 {
- page.pageOutputInit.Do(func() {
- var po *PageOutput
- po, err = newPageOutput(page, false, outFormat)
- page.mainPageOutput = po
- })
- pageOutput = page.mainPageOutput
+ pageOutput, err = newPageOutput(page, false, outFormat)
+ page.mainPageOutput = pageOutput
} else {
- pageOutput, err = newPageOutput(page, true, outFormat)
+ pageOutput, err = page.mainPageOutput.copyWithFormat(outFormat)
}
if err != nil {
continue
}
- pagerNode := p.copy()
+ pagerNode, err := p.copy()
+ if err != nil {
+ return err
+ }
pagerNode.paginator = pager
if pager.TotalPages() > 0 {