2015-12-10 17:19:38 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2015-08-07 14:09:40 -04:00
|
|
|
// Wraps a blackfriday.Renderer, typically a blackfriday.Html
|
2015-09-07 14:41:02 -04:00
|
|
|
// Enabling Hugo to customise the rendering experience
|
2015-08-07 14:09:40 -04:00
|
|
|
type HugoHtmlRenderer struct {
|
2015-07-03 17:53:50 -04:00
|
|
|
blackfriday.Renderer
|
|
|
|
}
|
|
|
|
|
2015-08-07 14:09:40 -04:00
|
|
|
func (renderer *HugoHtmlRenderer) BlockCode(out *bytes.Buffer, text []byte, lang string) {
|
2015-07-03 17:53:50 -04:00
|
|
|
if viper.GetBool("PygmentsCodeFences") {
|
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
|
|
|
|
|
|
|
// Wraps a mmark.Renderer, typically a mmark.html
|
|
|
|
// Enabling Hugo to customise the rendering experience
|
|
|
|
type HugoMmarkHtmlRenderer struct {
|
|
|
|
mmark.Renderer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (renderer *HugoMmarkHtmlRenderer) BlockCode(out *bytes.Buffer, text []byte, lang string, caption []byte, subfigure bool, callouts bool) {
|
|
|
|
if viper.GetBool("PygmentsCodeFences") {
|
|
|
|
str := html.UnescapeString(string(text))
|
|
|
|
out.WriteString(Highlight(str, lang, ""))
|
|
|
|
} else {
|
|
|
|
renderer.Renderer.BlockCode(out, text, lang, caption, subfigure, callouts)
|
|
|
|
}
|
|
|
|
}
|