2017-03-13 18:55:02 -04:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
|
|
|
package transform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"html"
|
|
|
|
"html/template"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/cast"
|
2017-03-13 18:55:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// New returns a new instance of the transform-namespaced template functions.
|
|
|
|
func New(deps *deps.Deps) *Namespace {
|
|
|
|
return &Namespace{
|
|
|
|
deps: deps,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Namespace provides template functions for the "transform" namespace.
|
|
|
|
type Namespace struct {
|
|
|
|
deps *deps.Deps
|
|
|
|
}
|
|
|
|
|
|
|
|
// Emojify returns a copy of s with all emoji codes replaced with actual emojis.
|
|
|
|
//
|
|
|
|
// See http://www.emoji-cheat-sheet.com/
|
|
|
|
func (ns *Namespace) Emojify(s interface{}) (template.HTML, error) {
|
|
|
|
ss, err := cast.ToStringE(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return template.HTML(helpers.Emojify([]byte(ss))), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Highlight returns a copy of s as an HTML string with syntax
|
|
|
|
// highlighting applied.
|
|
|
|
func (ns *Namespace) Highlight(s interface{}, lang, opts string) (template.HTML, error) {
|
|
|
|
ss, err := cast.ToStringE(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2017-12-29 03:52:43 -05:00
|
|
|
highlighted, _ := ns.deps.ContentSpec.Highlight(ss, lang, opts)
|
2017-09-25 02:59:02 -04:00
|
|
|
return template.HTML(highlighted), nil
|
2017-03-13 18:55:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// HTMLEscape returns a copy of s with reserved HTML characters escaped.
|
|
|
|
func (ns *Namespace) HTMLEscape(s interface{}) (string, error) {
|
|
|
|
ss, err := cast.ToStringE(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return html.EscapeString(ss), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTMLUnescape returns a copy of with HTML escape requences converted to plain
|
|
|
|
// text.
|
|
|
|
func (ns *Namespace) HTMLUnescape(s interface{}) (string, error) {
|
|
|
|
ss, err := cast.ToStringE(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return html.UnescapeString(ss), nil
|
|
|
|
}
|
|
|
|
|
2017-08-09 03:54:21 -04:00
|
|
|
var (
|
|
|
|
markdownTrimPrefix = []byte("<p>")
|
|
|
|
markdownTrimSuffix = []byte("</p>\n")
|
|
|
|
markdownParagraphIndicator = []byte("<p")
|
|
|
|
)
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
// Markdownify renders a given input from Markdown to HTML.
|
|
|
|
func (ns *Namespace) Markdownify(s interface{}) (template.HTML, error) {
|
|
|
|
ss, err := cast.ToStringE(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
m := ns.deps.ContentSpec.RenderBytes(
|
|
|
|
&helpers.RenderingContext{
|
|
|
|
Cfg: ns.deps.Cfg,
|
|
|
|
Content: []byte(ss),
|
|
|
|
PageFmt: "markdown",
|
Reuse the BlackFriday instance when possible
This is in heavy use in rendering, so this makes a difference:
```bash
benchmark old ns/op new ns/op delta
BenchmarkSiteBuilding/TOML,num_langs=1,num_pages=500,tags_per_page=5,shortcodes,render-4 124551144 107743429 -13.49%
benchmark old allocs new allocs delta
BenchmarkSiteBuilding/TOML,num_langs=1,num_pages=500,tags_per_page=5,shortcodes,render-4 528684 435118 -17.70%
benchmark old bytes new bytes delta
BenchmarkSiteBuilding/TOML,num_langs=1,num_pages=500,tags_per_page=5,shortcodes,render-4 53306848 45147832 -15.31%
```
2017-12-16 12:56:58 -05:00
|
|
|
Config: ns.deps.ContentSpec.BlackFriday,
|
2017-03-13 18:55:02 -04:00
|
|
|
},
|
|
|
|
)
|
2017-08-09 03:54:21 -04:00
|
|
|
|
|
|
|
// Strip if this is a short inline type of text.
|
|
|
|
first := bytes.Index(m, markdownParagraphIndicator)
|
|
|
|
last := bytes.LastIndex(m, markdownParagraphIndicator)
|
|
|
|
if first == last {
|
|
|
|
m = bytes.TrimPrefix(m, markdownTrimPrefix)
|
|
|
|
m = bytes.TrimSuffix(m, markdownTrimSuffix)
|
|
|
|
}
|
2017-03-13 18:55:02 -04:00
|
|
|
|
|
|
|
return template.HTML(m), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Plainify returns a copy of s with all HTML tags removed.
|
|
|
|
func (ns *Namespace) Plainify(s interface{}) (string, error) {
|
|
|
|
ss, err := cast.ToStringE(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return helpers.StripHTML(ss), nil
|
|
|
|
}
|