2022-02-17 07:04:00 -05:00
|
|
|
// Copyright 2022 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 codeblocks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2022-08-03 05:32:08 -04:00
|
|
|
"strings"
|
2022-02-26 06:52:06 -05:00
|
|
|
"sync"
|
2022-02-17 07:04:00 -05:00
|
|
|
|
2022-05-26 06:17:10 -04:00
|
|
|
"github.com/alecthomas/chroma/v2/lexers"
|
2022-05-12 05:43:20 -04:00
|
|
|
"github.com/gohugoio/hugo/common/herrors"
|
2022-02-26 04:42:21 -05:00
|
|
|
htext "github.com/gohugoio/hugo/common/text"
|
2022-02-17 07:04:00 -05:00
|
|
|
"github.com/gohugoio/hugo/markup/converter/hooks"
|
|
|
|
"github.com/gohugoio/hugo/markup/goldmark/internal/render"
|
|
|
|
"github.com/gohugoio/hugo/markup/internal/attributes"
|
|
|
|
"github.com/yuin/goldmark"
|
|
|
|
"github.com/yuin/goldmark/ast"
|
|
|
|
"github.com/yuin/goldmark/parser"
|
|
|
|
"github.com/yuin/goldmark/renderer"
|
|
|
|
"github.com/yuin/goldmark/text"
|
|
|
|
"github.com/yuin/goldmark/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
2022-02-26 04:32:14 -05:00
|
|
|
codeBlocksExtension struct{}
|
|
|
|
htmlRenderer struct{}
|
2022-02-17 07:04:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func New() goldmark.Extender {
|
2022-02-26 04:32:14 -05:00
|
|
|
return &codeBlocksExtension{}
|
2022-02-17 07:04:00 -05:00
|
|
|
}
|
|
|
|
|
2022-02-26 04:32:14 -05:00
|
|
|
func (e *codeBlocksExtension) Extend(m goldmark.Markdown) {
|
2022-02-17 07:04:00 -05:00
|
|
|
m.Parser().AddOptions(
|
|
|
|
parser.WithASTTransformers(
|
|
|
|
util.Prioritized(&Transformer{}, 100),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
m.Renderer().AddOptions(renderer.WithNodeRenderers(
|
|
|
|
util.Prioritized(newHTMLRenderer(), 100),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
func newHTMLRenderer() renderer.NodeRenderer {
|
|
|
|
r := &htmlRenderer{}
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *htmlRenderer) RegisterFuncs(reg renderer.NodeRendererFuncRegisterer) {
|
|
|
|
reg.Register(KindCodeBlock, r.renderCodeBlock)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *htmlRenderer) renderCodeBlock(w util.BufWriter, src []byte, node ast.Node, entering bool) (ast.WalkStatus, error) {
|
|
|
|
ctx := w.(*render.Context)
|
|
|
|
|
|
|
|
if entering {
|
|
|
|
return ast.WalkContinue, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
n := node.(*codeBlock)
|
2022-08-03 05:32:08 -04:00
|
|
|
lang := getLang(n.b, src)
|
2022-02-26 06:52:06 -05:00
|
|
|
renderer := ctx.RenderContext().GetRenderer(hooks.CodeBlockRendererType, lang)
|
|
|
|
if renderer == nil {
|
|
|
|
return ast.WalkStop, fmt.Errorf("no code renderer found for %q", lang)
|
|
|
|
}
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
ordinal := n.ordinal
|
|
|
|
|
|
|
|
var buff bytes.Buffer
|
|
|
|
|
|
|
|
l := n.b.Lines().Len()
|
|
|
|
for i := 0; i < l; i++ {
|
|
|
|
line := n.b.Lines().At(i)
|
|
|
|
buff.Write(line.Value(src))
|
|
|
|
}
|
2022-02-26 04:42:21 -05:00
|
|
|
|
2022-02-26 06:52:06 -05:00
|
|
|
s := htext.Chomp(buff.String())
|
2022-02-17 07:04:00 -05:00
|
|
|
|
|
|
|
var info []byte
|
|
|
|
if n.b.Info != nil {
|
|
|
|
info = n.b.Info.Segment.Value(src)
|
|
|
|
}
|
2022-02-26 11:24:10 -05:00
|
|
|
|
|
|
|
attrtp := attributes.AttributesOwnerCodeBlockCustom
|
|
|
|
if isd, ok := renderer.(hooks.IsDefaultCodeBlockRendererProvider); (ok && isd.IsDefaultCodeBlockRenderer()) || lexers.Get(lang) != nil {
|
|
|
|
// We say that this is a Chroma code block if it's the default code block renderer
|
|
|
|
// or if the language is supported by Chroma.
|
|
|
|
attrtp = attributes.AttributesOwnerCodeBlockChroma
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsDefaultCodeBlockRendererProvider
|
2022-02-17 07:04:00 -05:00
|
|
|
attrs := getAttributes(n.b, info)
|
2022-02-26 06:52:06 -05:00
|
|
|
cbctx := &codeBlockContext{
|
|
|
|
page: ctx.DocumentContext().Document,
|
|
|
|
lang: lang,
|
|
|
|
code: s,
|
|
|
|
ordinal: ordinal,
|
2022-02-26 11:24:10 -05:00
|
|
|
AttributesHolder: attributes.New(attrs, attrtp),
|
2022-02-26 06:52:06 -05:00
|
|
|
}
|
2022-02-17 07:04:00 -05:00
|
|
|
|
2022-02-26 06:52:06 -05:00
|
|
|
cbctx.createPos = func() htext.Position {
|
2022-02-26 11:24:10 -05:00
|
|
|
if resolver, ok := renderer.(hooks.ElementPositionResolver); ok {
|
2022-02-26 06:52:06 -05:00
|
|
|
return resolver.ResolvePosition(cbctx)
|
|
|
|
}
|
|
|
|
return htext.Position{
|
|
|
|
Filename: ctx.DocumentContext().Filename,
|
2022-05-12 05:43:20 -04:00
|
|
|
LineNumber: 1,
|
|
|
|
ColumnNumber: 1,
|
2022-02-26 06:52:06 -05:00
|
|
|
}
|
2022-02-17 07:04:00 -05:00
|
|
|
}
|
|
|
|
|
2022-02-26 06:52:06 -05:00
|
|
|
cr := renderer.(hooks.CodeBlockRenderer)
|
2022-02-17 07:04:00 -05:00
|
|
|
|
|
|
|
err := cr.RenderCodeblock(
|
|
|
|
w,
|
2022-02-26 06:52:06 -05:00
|
|
|
cbctx,
|
2022-02-17 07:04:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
ctx.AddIdentity(cr)
|
|
|
|
|
2022-05-12 05:43:20 -04:00
|
|
|
if err != nil {
|
2022-05-14 09:51:04 -04:00
|
|
|
return ast.WalkContinue, herrors.NewFileErrorFromPos(err, cbctx.createPos())
|
2022-05-12 05:43:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return ast.WalkContinue, nil
|
2022-02-17 07:04:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type codeBlockContext struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
page any
|
2022-02-17 07:04:00 -05:00
|
|
|
lang string
|
|
|
|
code string
|
|
|
|
ordinal int
|
2022-02-26 06:52:06 -05:00
|
|
|
|
|
|
|
// This is only used in error situations and is expensive to create,
|
|
|
|
// to deleay creation until needed.
|
|
|
|
pos htext.Position
|
|
|
|
posInit sync.Once
|
|
|
|
createPos func() htext.Position
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
*attributes.AttributesHolder
|
|
|
|
}
|
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
func (c *codeBlockContext) Page() any {
|
2022-02-17 07:04:00 -05:00
|
|
|
return c.page
|
|
|
|
}
|
|
|
|
|
2022-02-27 07:31:55 -05:00
|
|
|
func (c *codeBlockContext) Type() string {
|
2022-02-17 07:04:00 -05:00
|
|
|
return c.lang
|
|
|
|
}
|
|
|
|
|
2022-02-27 07:31:55 -05:00
|
|
|
func (c *codeBlockContext) Inner() string {
|
2022-02-17 07:04:00 -05:00
|
|
|
return c.code
|
|
|
|
}
|
|
|
|
|
2022-02-26 06:52:06 -05:00
|
|
|
func (c *codeBlockContext) Ordinal() int {
|
2022-02-17 07:04:00 -05:00
|
|
|
return c.ordinal
|
|
|
|
}
|
|
|
|
|
2022-02-26 06:52:06 -05:00
|
|
|
func (c *codeBlockContext) Position() htext.Position {
|
|
|
|
c.posInit.Do(func() {
|
|
|
|
c.pos = c.createPos()
|
|
|
|
})
|
|
|
|
return c.pos
|
|
|
|
}
|
|
|
|
|
2022-08-03 05:32:08 -04:00
|
|
|
func getLang(node *ast.FencedCodeBlock, src []byte) string {
|
|
|
|
langWithAttributes := string(node.Language(src))
|
|
|
|
lang, _, _ := strings.Cut(langWithAttributes, "{")
|
|
|
|
return lang
|
|
|
|
}
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
func getAttributes(node *ast.FencedCodeBlock, infostr []byte) []ast.Attribute {
|
|
|
|
if node.Attributes() != nil {
|
|
|
|
return node.Attributes()
|
|
|
|
}
|
|
|
|
if infostr != nil {
|
|
|
|
attrStartIdx := -1
|
|
|
|
|
|
|
|
for idx, char := range infostr {
|
|
|
|
if char == '{' {
|
|
|
|
attrStartIdx = idx
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 05:32:08 -04:00
|
|
|
if attrStartIdx != -1 {
|
2022-02-17 07:04:00 -05:00
|
|
|
n := ast.NewTextBlock() // dummy node for storing attributes
|
|
|
|
attrStr := infostr[attrStartIdx:]
|
|
|
|
if attrs, hasAttr := parser.ParseAttributes(text.NewReader(attrStr)); hasAttr {
|
|
|
|
for _, attr := range attrs {
|
|
|
|
n.SetAttribute(attr.Name, attr.Value)
|
|
|
|
}
|
|
|
|
return n.Attributes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|