2016-02-25 00:52:11 +01:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
2014-10-17 16:57:48 -04:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2014-10-17 16:57:48 -04:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-10-17 16:57:48 -04:00
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
import (
|
2016-08-13 00:33:17 +02:00
|
|
|
"fmt"
|
2016-08-01 23:04:44 +02:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
"github.com/spf13/hugo/helpers"
|
|
|
|
|
"github.com/spf13/hugo/source"
|
|
|
|
|
)
|
2014-10-20 17:42:16 -04:00
|
|
|
|
2014-11-01 12:05:37 -04:00
|
|
|
func init() {
|
2014-11-20 12:39:09 -05:00
|
|
|
RegisterHandler(new(markdownHandler))
|
|
|
|
|
RegisterHandler(new(htmlHandler))
|
|
|
|
|
RegisterHandler(new(asciidocHandler))
|
2015-01-21 06:05:16 -07:00
|
|
|
RegisterHandler(new(rstHandler))
|
2015-01-30 07:17:50 -07:00
|
|
|
RegisterHandler(new(mmarkHandler))
|
2017-02-20 23:46:03 -08:00
|
|
|
RegisterHandler(new(orgHandler))
|
2014-10-20 17:42:16 -04:00
|
|
|
}
|
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
type basicPageHandler Handle
|
2014-10-20 17:42:16 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
func (b basicPageHandler) Read(f *source.File, s *Site) HandledResult {
|
2017-01-03 17:28:51 +01:00
|
|
|
page, err := s.NewPage(f.Path())
|
2016-01-07 21:48:13 -05:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
if err != nil {
|
|
|
|
|
return HandledResult{file: f, err: err}
|
|
|
|
|
}
|
2014-10-20 17:42:16 -04:00
|
|
|
|
2015-04-03 21:41:12 +02:00
|
|
|
if _, err := page.ReadFrom(f.Contents); err != nil {
|
2014-11-20 12:39:09 -05:00
|
|
|
return HandledResult{file: f, err: err}
|
|
|
|
|
}
|
2014-10-20 17:51:53 -04:00
|
|
|
|
2017-02-05 10:20:06 +07:00
|
|
|
// In a multilanguage setup, we use the first site to
|
|
|
|
|
// do the initial processing.
|
|
|
|
|
// That site may be different than where the page will end up,
|
|
|
|
|
// so we do the assignment here.
|
|
|
|
|
// We should clean up this, but that will have to wait.
|
|
|
|
|
s.assignSiteByLanguage(page)
|
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
return HandledResult{file: f, page: page, err: err}
|
2014-10-20 17:42:16 -04:00
|
|
|
}
|
2014-11-04 00:43:09 -05:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
func (b basicPageHandler) FileConvert(*source.File, *Site) HandledResult {
|
|
|
|
|
return HandledResult{}
|
|
|
|
|
}
|
2014-11-04 00:43:09 -05:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
type markdownHandler struct {
|
|
|
|
|
basicPageHandler
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h markdownHandler) Extensions() []string { return []string{"mdown", "markdown", "md"} }
|
2017-01-10 01:36:59 +01:00
|
|
|
func (h markdownHandler) PageConvert(p *Page) HandledResult {
|
|
|
|
|
return commonConvert(p)
|
2014-11-20 12:39:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type htmlHandler struct {
|
|
|
|
|
basicPageHandler
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h htmlHandler) Extensions() []string { return []string{"html", "htm"} }
|
2017-01-10 01:36:59 +01:00
|
|
|
|
|
|
|
|
func (h htmlHandler) PageConvert(p *Page) HandledResult {
|
2016-08-13 00:33:17 +02:00
|
|
|
if p.rendered {
|
|
|
|
|
panic(fmt.Sprintf("Page %q already rendered, does not need conversion", p.BaseFileName()))
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-01 10:21:49 +01:00
|
|
|
// Work on a copy of the raw content from now on.
|
|
|
|
|
p.createWorkContentCopy()
|
|
|
|
|
|
2017-05-06 10:48:27 +02:00
|
|
|
if err := p.processShortcodes(); err != nil {
|
|
|
|
|
return HandledResult{err: err}
|
|
|
|
|
}
|
2015-05-06 19:11:33 +02:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
return HandledResult{err: nil}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type asciidocHandler struct {
|
|
|
|
|
basicPageHandler
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-24 20:27:06 -06:00
|
|
|
func (h asciidocHandler) Extensions() []string { return []string{"asciidoc", "adoc", "ad"} }
|
2017-01-10 01:36:59 +01:00
|
|
|
func (h asciidocHandler) PageConvert(p *Page) HandledResult {
|
|
|
|
|
return commonConvert(p)
|
2014-11-04 00:43:09 -05:00
|
|
|
}
|
2015-01-21 06:05:16 -07:00
|
|
|
|
|
|
|
|
type rstHandler struct {
|
|
|
|
|
basicPageHandler
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h rstHandler) Extensions() []string { return []string{"rest", "rst"} }
|
2017-01-10 01:36:59 +01:00
|
|
|
func (h rstHandler) PageConvert(p *Page) HandledResult {
|
|
|
|
|
return commonConvert(p)
|
2015-01-21 06:05:16 -07:00
|
|
|
}
|
2015-01-30 07:17:50 -07:00
|
|
|
|
|
|
|
|
type mmarkHandler struct {
|
|
|
|
|
basicPageHandler
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h mmarkHandler) Extensions() []string { return []string{"mmark"} }
|
2017-01-10 01:36:59 +01:00
|
|
|
func (h mmarkHandler) PageConvert(p *Page) HandledResult {
|
|
|
|
|
return commonConvert(p)
|
2015-10-20 20:35:12 +02:00
|
|
|
}
|
|
|
|
|
|
2017-02-20 23:46:03 -08:00
|
|
|
type orgHandler struct {
|
|
|
|
|
basicPageHandler
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h orgHandler) Extensions() []string { return []string{"org"} }
|
|
|
|
|
func (h orgHandler) PageConvert(p *Page) HandledResult {
|
|
|
|
|
return commonConvert(p)
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-10 01:36:59 +01:00
|
|
|
func commonConvert(p *Page) HandledResult {
|
2016-08-13 00:33:17 +02:00
|
|
|
if p.rendered {
|
|
|
|
|
panic(fmt.Sprintf("Page %q already rendered, does not need conversion", p.BaseFileName()))
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-01 10:21:49 +01:00
|
|
|
// Work on a copy of the raw content from now on.
|
|
|
|
|
p.createWorkContentCopy()
|
|
|
|
|
|
2017-05-06 10:48:27 +02:00
|
|
|
if err := p.processShortcodes(); err != nil {
|
|
|
|
|
return HandledResult{err: err}
|
|
|
|
|
}
|
2015-01-30 07:17:50 -07:00
|
|
|
|
2016-08-01 23:04:44 +02:00
|
|
|
// 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.
|
2017-02-05 10:20:06 +07:00
|
|
|
if p.s.Cfg.GetBool("enableEmoji") {
|
2016-12-01 10:21:49 +01:00
|
|
|
p.workContent = helpers.Emojify(p.workContent)
|
2016-02-25 00:52:11 +01:00
|
|
|
}
|
|
|
|
|
|
2017-01-26 11:58:25 -08:00
|
|
|
p.workContent = p.replaceDivider(p.workContent)
|
2016-12-01 10:21:49 +01:00
|
|
|
p.workContent = p.renderContent(p.workContent)
|
2015-10-20 20:35:12 +02:00
|
|
|
|
2015-01-30 07:17:50 -07:00
|
|
|
return HandledResult{err: nil}
|
|
|
|
|
}
|