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 org converts Emacs Org-Mode to HTML.
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2023-06-16 02:17:42 -04:00
|
|
|
"log"
|
2019-08-16 09:55:03 -04:00
|
|
|
|
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/converter"
|
|
|
|
"github.com/niklasfasching/go-org/org"
|
|
|
|
"github.com/spf13/afero"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Provider is the package entry point.
|
2019-11-06 14:10:47 -05:00
|
|
|
var Provider converter.ProviderProvider = provide{}
|
2019-08-16 09:55:03 -04:00
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
type provide struct{}
|
2019-08-16 09:55:03 -04:00
|
|
|
|
|
|
|
func (p provide) New(cfg converter.ProviderConfig) (converter.Provider, error) {
|
2019-11-06 14:10:47 -05:00
|
|
|
return converter.NewProvider("org", func(ctx converter.DocumentContext) (converter.Converter, error) {
|
2019-08-16 09:55:03 -04:00
|
|
|
return &orgConverter{
|
|
|
|
ctx: ctx,
|
|
|
|
cfg: cfg,
|
|
|
|
}, nil
|
2019-11-06 14:10:47 -05:00
|
|
|
}), nil
|
2019-08-16 09:55:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type orgConverter struct {
|
|
|
|
ctx converter.DocumentContext
|
|
|
|
cfg converter.ProviderConfig
|
|
|
|
}
|
|
|
|
|
2023-02-24 01:23:10 -05:00
|
|
|
func (c *orgConverter) Convert(ctx converter.RenderContext) (converter.ResultRender, error) {
|
2019-08-16 09:55:03 -04:00
|
|
|
logger := c.cfg.Logger
|
|
|
|
config := org.New()
|
2023-06-16 02:17:42 -04:00
|
|
|
config.Log = log.Default() // TODO(bep)
|
2019-08-16 09:55:03 -04:00
|
|
|
config.ReadFile = func(filename string) ([]byte, error) {
|
|
|
|
return afero.ReadFile(c.cfg.ContentFs, filename)
|
|
|
|
}
|
|
|
|
writer := org.NewHTMLWriter()
|
2023-03-12 06:31:05 -04:00
|
|
|
writer.HighlightCodeBlock = func(source, lang string, inline bool, params map[string]string) string {
|
2019-08-16 09:55:03 -04:00
|
|
|
highlightedSource, err := c.cfg.Highlight(source, lang, "")
|
|
|
|
if err != nil {
|
2020-10-21 05:17:48 -04:00
|
|
|
logger.Errorf("Could not highlight source as lang %s. Using raw source.", lang)
|
2019-08-16 09:55:03 -04:00
|
|
|
return source
|
|
|
|
}
|
|
|
|
return highlightedSource
|
|
|
|
}
|
|
|
|
|
|
|
|
html, err := config.Parse(bytes.NewReader(ctx.Src), c.ctx.DocumentName).Write(writer)
|
|
|
|
if err != nil {
|
2020-10-21 05:17:48 -04:00
|
|
|
logger.Errorf("Could not render org: %s. Using unrendered content.", err)
|
2019-08-16 09:55:03 -04:00
|
|
|
return converter.Bytes(ctx.Src), nil
|
|
|
|
}
|
|
|
|
return converter.Bytes([]byte(html)), nil
|
|
|
|
}
|
2019-11-27 07:42:36 -05:00
|
|
|
|
|
|
|
func (c *orgConverter) Supports(feature identity.Identity) bool {
|
|
|
|
return false
|
|
|
|
}
|