2019-08-16 09:55:03 -04:00
|
|
|
// Copyright 2019 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 pandoc converts content to HTML using Pandoc as an external helper.
|
|
|
|
package pandoc
|
|
|
|
|
|
|
|
import (
|
2021-12-12 06:11:11 -05:00
|
|
|
"github.com/gohugoio/hugo/common/hexec"
|
2020-12-23 03:26:23 -05:00
|
|
|
"github.com/gohugoio/hugo/htesting"
|
2019-11-27 07:42:36 -05:00
|
|
|
"github.com/gohugoio/hugo/identity"
|
2019-08-16 09:55:03 -04:00
|
|
|
"github.com/gohugoio/hugo/markup/internal"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/markup/converter"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Provider is the package entry point.
|
2019-11-06 14:10:47 -05:00
|
|
|
var Provider converter.ProviderProvider = provider{}
|
2019-08-16 09:55:03 -04:00
|
|
|
|
|
|
|
type provider struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p provider) New(cfg converter.ProviderConfig) (converter.Provider, error) {
|
2019-11-06 14:10:47 -05:00
|
|
|
return converter.NewProvider("pandoc", func(ctx converter.DocumentContext) (converter.Converter, error) {
|
2019-08-16 09:55:03 -04:00
|
|
|
return &pandocConverter{
|
|
|
|
ctx: ctx,
|
|
|
|
cfg: cfg,
|
|
|
|
}, nil
|
2019-11-06 14:10:47 -05:00
|
|
|
}), nil
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type pandocConverter struct {
|
|
|
|
ctx converter.DocumentContext
|
|
|
|
cfg converter.ProviderConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pandocConverter) Convert(ctx converter.RenderContext) (converter.Result, error) {
|
2021-12-12 06:11:11 -05:00
|
|
|
b, err := c.getPandocContent(ctx.Src, c.ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return converter.Bytes(b), nil
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|
|
|
|
|
2019-11-27 07:42:36 -05:00
|
|
|
func (c *pandocConverter) Supports(feature identity.Identity) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-08-16 09:55:03 -04:00
|
|
|
// getPandocContent calls pandoc as an external helper to convert pandoc markdown to HTML.
|
2021-12-12 06:11:11 -05:00
|
|
|
func (c *pandocConverter) getPandocContent(src []byte, ctx converter.DocumentContext) ([]byte, error) {
|
2019-08-16 09:55:03 -04:00
|
|
|
logger := c.cfg.Logger
|
2021-12-12 06:11:11 -05:00
|
|
|
binaryName := getPandocBinaryName()
|
|
|
|
if binaryName == "" {
|
2020-10-21 05:17:48 -04:00
|
|
|
logger.Println("pandoc not found in $PATH: Please install.\n",
|
2019-08-16 09:55:03 -04:00
|
|
|
" Leaving pandoc content unrendered.")
|
2021-12-12 06:11:11 -05:00
|
|
|
return src, nil
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|
|
|
|
args := []string{"--mathjax"}
|
2021-12-12 06:11:11 -05:00
|
|
|
return internal.ExternallyRenderContent(c.cfg, ctx, src, binaryName, args)
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|
|
|
|
|
2021-12-12 06:11:11 -05:00
|
|
|
const pandocBinary = "pandoc"
|
2019-08-16 09:55:03 -04:00
|
|
|
|
2021-12-12 06:11:11 -05:00
|
|
|
func getPandocBinaryName() string {
|
|
|
|
if hexec.InPath(pandocBinary) {
|
|
|
|
return pandocBinary
|
|
|
|
}
|
|
|
|
return ""
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Supports returns whether Pandoc is installed on this computer.
|
|
|
|
func Supports() bool {
|
2021-12-12 06:11:11 -05:00
|
|
|
hasBin := getPandocBinaryName() != ""
|
2020-12-23 03:26:23 -05:00
|
|
|
if htesting.SupportsAll() {
|
2021-12-12 06:11:11 -05:00
|
|
|
if !hasBin {
|
|
|
|
panic("pandoc not installed")
|
|
|
|
}
|
2020-12-23 03:26:23 -05:00
|
|
|
return true
|
|
|
|
}
|
2021-12-12 06:11:11 -05:00
|
|
|
return hasBin
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|