// Work on a copy of the raw content from now on.
p.createWorkContentCopy()
- p.ProcessShortcodes()
+ if err := p.processShortcodes(); err != nil {
+ return HandledResult{err: err}
+ }
return HandledResult{err: nil}
}
// Work on a copy of the raw content from now on.
p.createWorkContentCopy()
- p.ProcessShortcodes()
+ if err := p.processShortcodes(); err != nil {
+ return HandledResult{err: err}
+ }
// TODO(bep) these page handlers need to be re-evaluated, as it is hard to
// process a page in isolation. See the new preRender func.
return p.SaveSourceAs(p.FullFilePath())
}
-func (p *Page) ProcessShortcodes() {
+func (p *Page) processShortcodes() error {
p.shortcodeState = newShortcodeHandler()
- tmpContent, _ := p.shortcodeState.extractAndRenderShortcodes(string(p.workContent), p)
+ tmpContent, err := p.shortcodeState.extractAndRenderShortcodes(string(p.workContent), p)
+ if err != nil {
+ return err
+ }
p.workContent = []byte(tmpContent)
+ return nil
+
}
func (p *Page) FullFilePath() string {