2016-02-24 18:52:11 -05: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-01 17:04:44 -04:00
|
|
|
"bytes"
|
2016-08-12 18:33:17 -04:00
|
|
|
"fmt"
|
2016-08-01 17:04:44 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
"github.com/spf13/hugo/helpers"
|
|
|
|
"github.com/spf13/hugo/source"
|
|
|
|
"github.com/spf13/hugo/tpl"
|
2016-02-24 18:52:11 -05:00
|
|
|
"github.com/spf13/viper"
|
2014-11-20 12:39:09 -05:00
|
|
|
)
|
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 08:05:16 -05:00
|
|
|
RegisterHandler(new(rstHandler))
|
2015-01-30 09:17:50 -05:00
|
|
|
RegisterHandler(new(mmarkHandler))
|
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 {
|
|
|
|
page, err := 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 15:41:12 -04: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
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
page.Site = &s.Info
|
2014-10-20 20:15:33 -04:00
|
|
|
|
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"} }
|
|
|
|
func (h markdownHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
|
2015-10-20 14:35:12 -04:00
|
|
|
return commonConvert(p, t)
|
2014-11-20 12:39:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type htmlHandler struct {
|
|
|
|
basicPageHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h htmlHandler) Extensions() []string { return []string{"html", "htm"} }
|
|
|
|
func (h htmlHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
|
2016-08-12 18:33:17 -04:00
|
|
|
if p.rendered {
|
|
|
|
panic(fmt.Sprintf("Page %q already rendered, does not need conversion", p.BaseFileName()))
|
|
|
|
}
|
|
|
|
|
2016-12-01 04:21:49 -05:00
|
|
|
// Work on a copy of the raw content from now on.
|
|
|
|
p.createWorkContentCopy()
|
|
|
|
|
2015-05-06 13:11:33 -04:00
|
|
|
p.ProcessShortcodes(t)
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
return HandledResult{err: nil}
|
|
|
|
}
|
|
|
|
|
|
|
|
type asciidocHandler struct {
|
|
|
|
basicPageHandler
|
|
|
|
}
|
|
|
|
|
2015-03-24 22:27:06 -04:00
|
|
|
func (h asciidocHandler) Extensions() []string { return []string{"asciidoc", "adoc", "ad"} }
|
2014-11-20 12:39:09 -05:00
|
|
|
func (h asciidocHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
|
2015-10-20 14:35:12 -04:00
|
|
|
return commonConvert(p, t)
|
2014-11-04 00:43:09 -05:00
|
|
|
}
|
2015-01-21 08:05:16 -05:00
|
|
|
|
|
|
|
type rstHandler struct {
|
|
|
|
basicPageHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h rstHandler) Extensions() []string { return []string{"rest", "rst"} }
|
|
|
|
func (h rstHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
|
2015-10-20 14:35:12 -04:00
|
|
|
return commonConvert(p, t)
|
2015-01-21 08:05:16 -05:00
|
|
|
}
|
2015-01-30 09:17:50 -05:00
|
|
|
|
|
|
|
type mmarkHandler struct {
|
|
|
|
basicPageHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h mmarkHandler) Extensions() []string { return []string{"mmark"} }
|
|
|
|
func (h mmarkHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
|
2015-10-20 14:35:12 -04:00
|
|
|
return commonConvert(p, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func commonConvert(p *Page, t tpl.Template) HandledResult {
|
2016-08-12 18:33:17 -04:00
|
|
|
if p.rendered {
|
|
|
|
panic(fmt.Sprintf("Page %q already rendered, does not need conversion", p.BaseFileName()))
|
|
|
|
}
|
|
|
|
|
2016-12-01 04:21:49 -05:00
|
|
|
// Work on a copy of the raw content from now on.
|
|
|
|
p.createWorkContentCopy()
|
|
|
|
|
2015-01-30 09:17:50 -05:00
|
|
|
p.ProcessShortcodes(t)
|
|
|
|
|
2016-08-01 17:04:44 -04: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.
|
2016-10-24 14:56:00 -04:00
|
|
|
if viper.GetBool("enableEmoji") {
|
2016-12-01 04:21:49 -05:00
|
|
|
p.workContent = helpers.Emojify(p.workContent)
|
2016-02-24 18:52:11 -05:00
|
|
|
}
|
|
|
|
|
2016-08-01 17:04:44 -04:00
|
|
|
// We have to replace the <!--more--> with something that survives all the
|
|
|
|
// rendering engines.
|
|
|
|
// TODO(bep) inline replace
|
2016-12-01 04:21:49 -05:00
|
|
|
p.workContent = bytes.Replace(p.workContent, []byte(helpers.SummaryDivider), internalSummaryDivider, 1)
|
|
|
|
p.workContent = p.renderContent(p.workContent)
|
2015-10-20 14:35:12 -04:00
|
|
|
|
2015-01-30 09:17:50 -05:00
|
|
|
return HandledResult{err: nil}
|
|
|
|
}
|