2019-11-27 07:42:36 -05: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 hooks
|
|
|
|
|
|
|
|
import (
|
2023-02-25 03:24:59 -05:00
|
|
|
"context"
|
2019-11-27 07:42:36 -05:00
|
|
|
"io"
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
"github.com/gohugoio/hugo/common/hugio"
|
2022-02-26 06:52:06 -05:00
|
|
|
"github.com/gohugoio/hugo/common/text"
|
2022-03-10 02:19:03 -05:00
|
|
|
"github.com/gohugoio/hugo/common/types/hstring"
|
2022-02-17 07:04:00 -05:00
|
|
|
"github.com/gohugoio/hugo/markup/internal/attributes"
|
2019-11-27 07:42:36 -05:00
|
|
|
)
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
var _ AttributesOptionsSliceProvider = (*attributes.AttributesHolder)(nil)
|
|
|
|
|
2021-02-22 05:27:14 -05:00
|
|
|
type AttributesProvider interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
// Attributes passed in from Markdown (e.g. { attrName1=attrValue1 attrName2="attr Value 2" }).
|
2022-03-17 17:03:27 -04:00
|
|
|
Attributes() map[string]any
|
2021-02-22 05:27:14 -05:00
|
|
|
}
|
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
// LinkContext is the context passed to a link render hook.
|
2019-11-27 07:42:36 -05:00
|
|
|
type LinkContext interface {
|
2022-12-30 03:20:58 -05:00
|
|
|
// The Page being rendered.
|
2022-03-17 17:03:27 -04:00
|
|
|
Page() any
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The link URL.
|
2019-11-27 07:42:36 -05:00
|
|
|
Destination() string
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The link title attribute.
|
2019-11-27 07:42:36 -05:00
|
|
|
Title() string
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The rendered (HTML) text.
|
2022-03-10 02:19:03 -05:00
|
|
|
Text() hstring.RenderedString
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The plain variant of Text.
|
2019-12-18 11:23:09 -05:00
|
|
|
PlainText() string
|
2019-11-27 07:42:36 -05:00
|
|
|
}
|
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
// ImageLinkContext is the context passed to a image link render hook.
|
2022-12-03 06:33:48 -05:00
|
|
|
type ImageLinkContext interface {
|
|
|
|
LinkContext
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// Returns true if this is a standalone image and the config option
|
|
|
|
// markup.goldmark.parser.wrapStandAloneImageWithinParagraph is disabled.
|
2022-12-03 06:33:48 -05:00
|
|
|
IsBlock() bool
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// Zero-based ordinal for all the images in the current document.
|
2022-12-03 06:33:48 -05:00
|
|
|
Ordinal() int
|
|
|
|
}
|
|
|
|
|
2022-12-30 03:20:58 -05:00
|
|
|
// CodeblockContext is the context passed to a code block render hook.
|
2022-02-17 07:04:00 -05:00
|
|
|
type CodeblockContext interface {
|
|
|
|
AttributesProvider
|
2022-02-26 06:52:06 -05:00
|
|
|
text.Positioner
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// Chroma highlighting processing options. This will only be filled if Type is a known Chroma Lexer.
|
2022-03-17 17:03:27 -04:00
|
|
|
Options() map[string]any
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The type of code block. This will be the programming language, e.g. bash, when doing code highlighting.
|
2022-02-27 07:31:55 -05:00
|
|
|
Type() string
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The text between the code fences.
|
2022-02-27 07:31:55 -05:00
|
|
|
Inner() string
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// Zero-based ordinal for all code blocks in the current document.
|
2022-02-17 07:04:00 -05:00
|
|
|
Ordinal() int
|
2022-12-30 03:20:58 -05:00
|
|
|
|
|
|
|
// The owning Page.
|
2022-03-17 17:03:27 -04:00
|
|
|
Page() any
|
2022-02-17 07:04:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type AttributesOptionsSliceProvider interface {
|
|
|
|
AttributesSlice() []attributes.Attribute
|
|
|
|
OptionsSlice() []attributes.Attribute
|
|
|
|
}
|
|
|
|
|
2020-03-14 10:43:10 -04:00
|
|
|
type LinkRenderer interface {
|
2023-02-25 03:24:59 -05:00
|
|
|
RenderLink(cctx context.Context, w io.Writer, ctx LinkContext) error
|
2020-03-14 10:43:10 -04:00
|
|
|
}
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
type CodeBlockRenderer interface {
|
2023-02-25 03:24:59 -05:00
|
|
|
RenderCodeblock(cctx context.Context, w hugio.FlexiWriter, ctx CodeblockContext) error
|
2022-02-17 07:04:00 -05:00
|
|
|
}
|
|
|
|
|
2022-02-26 06:52:06 -05:00
|
|
|
type IsDefaultCodeBlockRendererProvider interface {
|
|
|
|
IsDefaultCodeBlockRenderer() bool
|
|
|
|
}
|
|
|
|
|
2020-03-14 10:43:10 -04:00
|
|
|
// HeadingContext contains accessors to all attributes that a HeadingRenderer
|
|
|
|
// can use to render a heading.
|
|
|
|
type HeadingContext interface {
|
|
|
|
// Page is the page containing the heading.
|
2022-03-17 17:03:27 -04:00
|
|
|
Page() any
|
2020-03-14 10:43:10 -04:00
|
|
|
// Level is the level of the header (i.e. 1 for top-level, 2 for sub-level, etc.).
|
|
|
|
Level() int
|
|
|
|
// Anchor is the HTML id assigned to the heading.
|
|
|
|
Anchor() string
|
|
|
|
// Text is the rendered (HTML) heading text, excluding the heading marker.
|
2022-03-10 02:19:03 -05:00
|
|
|
Text() hstring.RenderedString
|
2020-03-14 10:43:10 -04:00
|
|
|
// PlainText is the unrendered version of Text.
|
|
|
|
PlainText() string
|
2021-02-22 05:27:14 -05:00
|
|
|
|
|
|
|
// Attributes (e.g. CSS classes)
|
|
|
|
AttributesProvider
|
2020-03-14 10:43:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// HeadingRenderer describes a uniquely identifiable rendering hook.
|
|
|
|
type HeadingRenderer interface {
|
2023-05-18 05:05:56 -04:00
|
|
|
// RenderHeading writes the rendered content to w using the data in w.
|
2023-02-25 03:24:59 -05:00
|
|
|
RenderHeading(cctx context.Context, w io.Writer, ctx HeadingContext) error
|
2019-11-27 07:42:36 -05:00
|
|
|
}
|
|
|
|
|
2022-02-26 11:24:10 -05:00
|
|
|
// ElementPositionResolver provides a way to resolve the start Position
|
2022-02-26 06:52:06 -05:00
|
|
|
// of a markdown element in the original source document.
|
2022-03-09 23:01:05 -05:00
|
|
|
// This may be both slow and approximate, so should only be
|
2022-02-26 06:52:06 -05:00
|
|
|
// used for error logging.
|
2022-02-26 11:24:10 -05:00
|
|
|
type ElementPositionResolver interface {
|
2022-03-17 17:03:27 -04:00
|
|
|
ResolvePosition(ctx any) text.Position
|
2022-02-26 06:52:06 -05:00
|
|
|
}
|
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
type RendererType int
|
2021-03-09 04:26:44 -05:00
|
|
|
|
2022-02-17 07:04:00 -05:00
|
|
|
const (
|
|
|
|
LinkRendererType RendererType = iota + 1
|
|
|
|
ImageRendererType
|
|
|
|
HeadingRendererType
|
|
|
|
CodeBlockRendererType
|
|
|
|
)
|
2021-03-09 04:26:44 -05:00
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
type GetRendererFunc func(t RendererType, id any) any
|