2016-03-01 07:51:46 -05:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
2015-12-10 17:19:38 -05:00
|
|
|
//
|
|
|
|
// Licensed under the Apache 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://www.apache.org/licenses/LICENSE-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.
|
|
|
|
|
2015-07-03 17:53:50 -04:00
|
|
|
package helpers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"html"
|
|
|
|
|
2015-10-12 14:47:06 -04:00
|
|
|
"github.com/miekg/mmark"
|
2015-07-03 17:53:50 -04:00
|
|
|
"github.com/russross/blackfriday"
|
2015-09-08 20:03:38 -04:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2015-07-03 17:53:50 -04:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2015-09-08 20:03:38 -04:00
|
|
|
type LinkResolverFunc func(ref string) (string, error)
|
|
|
|
type FileResolverFunc func(ref string) (string, error)
|
|
|
|
|
2016-03-24 18:16:18 -04:00
|
|
|
// HugoHTMLRenderer wraps a blackfriday.Renderer, typically a blackfriday.Html
|
2015-09-07 14:41:02 -04:00
|
|
|
// Enabling Hugo to customise the rendering experience
|
2016-03-24 18:16:18 -04:00
|
|
|
type HugoHTMLRenderer struct {
|
2016-07-22 05:00:52 -04:00
|
|
|
*RenderingContext
|
2015-07-03 17:53:50 -04:00
|
|
|
blackfriday.Renderer
|
|
|
|
}
|
|
|
|
|
2016-03-24 18:16:18 -04:00
|
|
|
func (renderer *HugoHTMLRenderer) BlockCode(out *bytes.Buffer, text []byte, lang string) {
|
2016-03-31 07:14:57 -04:00
|
|
|
if viper.GetBool("PygmentsCodeFences") && (lang != "" || viper.GetBool("PygmentsCodeFencesGuessSyntax")) {
|
2015-07-08 21:51:54 -04:00
|
|
|
opts := viper.GetString("PygmentsOptions")
|
2015-07-03 17:53:50 -04:00
|
|
|
str := html.UnescapeString(string(text))
|
2015-07-08 21:51:54 -04:00
|
|
|
out.WriteString(Highlight(str, lang, opts))
|
2015-07-03 17:53:50 -04:00
|
|
|
} else {
|
|
|
|
renderer.Renderer.BlockCode(out, text, lang)
|
|
|
|
}
|
|
|
|
}
|
2015-09-07 14:41:02 -04:00
|
|
|
|
2016-03-24 18:16:18 -04:00
|
|
|
func (renderer *HugoHTMLRenderer) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) {
|
2016-06-13 13:10:53 -04:00
|
|
|
if renderer.LinkResolver == nil || bytes.HasPrefix(link, []byte("{-{-HUGOSHORTCODE")) {
|
2015-09-08 20:03:38 -04:00
|
|
|
// Use the blackfriday built in Link handler
|
|
|
|
renderer.Renderer.Link(out, link, title, content)
|
|
|
|
} else {
|
2016-03-15 02:00:36 -04:00
|
|
|
// set by SourceRelativeLinksEval
|
2015-09-08 20:03:38 -04:00
|
|
|
newLink, err := renderer.LinkResolver(string(link))
|
|
|
|
if err != nil {
|
|
|
|
newLink = string(link)
|
|
|
|
jww.ERROR.Printf("LinkResolver: %s", err)
|
|
|
|
}
|
|
|
|
renderer.Renderer.Link(out, []byte(newLink), title, content)
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 18:16:18 -04:00
|
|
|
func (renderer *HugoHTMLRenderer) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
|
2016-06-13 13:10:53 -04:00
|
|
|
if renderer.FileResolver == nil || bytes.HasPrefix(link, []byte("{-{-HUGOSHORTCODE")) {
|
2015-09-08 20:03:38 -04:00
|
|
|
// Use the blackfriday built in Image handler
|
|
|
|
renderer.Renderer.Image(out, link, title, alt)
|
|
|
|
} else {
|
2016-03-15 02:00:36 -04:00
|
|
|
// set by SourceRelativeLinksEval
|
2015-09-08 20:03:38 -04:00
|
|
|
newLink, err := renderer.FileResolver(string(link))
|
|
|
|
if err != nil {
|
|
|
|
newLink = string(link)
|
|
|
|
jww.ERROR.Printf("FileResolver: %s", err)
|
|
|
|
}
|
|
|
|
renderer.Renderer.Image(out, []byte(newLink), title, alt)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 18:16:18 -04:00
|
|
|
// HugoMmarkHTMLRenderer wraps a mmark.Renderer, typically a mmark.html
|
2015-09-07 14:41:02 -04:00
|
|
|
// Enabling Hugo to customise the rendering experience
|
2016-03-24 18:16:18 -04:00
|
|
|
type HugoMmarkHTMLRenderer struct {
|
2015-09-07 14:41:02 -04:00
|
|
|
mmark.Renderer
|
|
|
|
}
|
|
|
|
|
2016-03-24 18:16:18 -04:00
|
|
|
func (renderer *HugoMmarkHTMLRenderer) BlockCode(out *bytes.Buffer, text []byte, lang string, caption []byte, subfigure bool, callouts bool) {
|
2016-03-31 07:14:57 -04:00
|
|
|
if viper.GetBool("PygmentsCodeFences") && (lang != "" || viper.GetBool("PygmentsCodeFencesGuessSyntax")) {
|
2015-09-07 14:41:02 -04:00
|
|
|
str := html.UnescapeString(string(text))
|
|
|
|
out.WriteString(Highlight(str, lang, ""))
|
|
|
|
} else {
|
|
|
|
renderer.Renderer.BlockCode(out, text, lang, caption, subfigure, callouts)
|
|
|
|
}
|
|
|
|
}
|