hugo/hugolib/handler_page.go

49 lines
1.3 KiB
Go
Raw Normal View History

2014-10-17 20:57:48 +00:00
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
// Licensed under the Simple Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://opensource.org/licenses/Simple-2.0
//
// 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-10-20 21:42:16 +00:00
import "github.com/spf13/hugo/source"
2014-11-01 16:05:37 +00:00
func init() {
RegisterHandler(markdown)
2014-10-20 21:42:16 +00:00
}
var markdown = Handle{
extensions: []string{"mdown", "markdown", "md"},
2014-10-21 00:15:33 +00:00
read: func(f *source.File, s *Site, results HandleResults) {
2014-10-20 21:42:16 +00:00
page, err := NewPage(f.Path())
if err != nil {
results <- HandledResult{file: f, err: err}
}
if err := page.ReadFrom(f.Contents); err != nil {
results <- HandledResult{file: f, err: err}
}
2014-10-20 21:51:53 +00:00
page.Site = &s.Info
page.Tmpl = s.Tmpl
2014-10-20 21:42:16 +00:00
results <- HandledResult{file: f, page: page, err: err}
},
2014-10-21 00:15:33 +00:00
pageConvert: func(p *Page, s *Site, results HandleResults) {
p.ProcessShortcodes(s.Tmpl)
err := p.Convert()
if err != nil {
results <- HandledResult{err: err}
}
results <- HandledResult{err: err}
},
2014-10-20 21:42:16 +00:00
}