// Provider is the package entry point.
var Provider converter.ProviderProvider = provide{}
-type provide struct {
-}
+type provide struct{}
func (p provide) New(cfg converter.ProviderConfig) (converter.Provider, error) {
md := newMarkdown(cfg)
type renderContext struct {
*bufWriter
- pos int
+ positions []int
renderContextData
}
+func (ctx *renderContext) pushPos(n int) {
+ ctx.positions = append(ctx.positions, n)
+}
+
+func (ctx *renderContext) popPos() int {
+ i := len(ctx.positions) - 1
+ p := ctx.positions[i]
+ ctx.positions = ctx.positions[:i]
+ return p
+}
+
type renderContextData interface {
RenderContext() converter.RenderContext
DocumentContext() converter.DocumentContext
`)
}
+// Issue 9504
+func TestLinkInTitle(t *testing.T) {
+ t.Parallel()
+
+ files := `
+-- config.toml --
+-- content/p1.md --
+---
+title: "p1"
+---
+## Hello [Test](https://example.com)
+-- layouts/_default/single.html --
+{{ .Content }}
+-- layouts/_default/_markup/render-heading.html --
+<h{{ .Level }} id="{{ .Anchor | safeURL }}">
+ {{ .Text | safeHTML }}
+ <a class="anchor" href="#{{ .Anchor | safeURL }}">#</a>
+</h{{ .Level }}>
+-- layouts/_default/_markup/render-link.html --
+<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}>{{ .Text | safeHTML }}</a>
+
+`
+
+ b := hugolib.NewIntegrationTestBuilder(
+ hugolib.IntegrationTestConfig{
+ T: t,
+ TxtarString: files,
+ NeedsOsFS: false,
+ },
+ ).Build()
+
+ b.AssertFileContent("public/p1/index.html",
+ "<h2 id=\"hello-testhttpsexamplecom\">\n Hello <a href=\"https://example.com\">Test</a>\n\n <a class=\"anchor\" href=\"#hello-testhttpsexamplecom\">#</a>\n</h2>",
+ )
+}
+
func BenchmarkSiteWithRenderHooks(b *testing.B) {
files := `
-- config.toml --
renderAttributes(w, false, node.Attributes()...)
}
-var (
-
- // Attributes with special meaning that does not make sense to render in HTML.
- attributeExcludes = map[string]bool{
- "hl_lines": true,
- "hl_style": true,
- "linenos": true,
- "linenostart": true,
- }
-)
+// Attributes with special meaning that does not make sense to render in HTML.
+var attributeExcludes = map[string]bool{
+ "hl_lines": true,
+ "hl_style": true,
+ "linenos": true,
+ "linenostart": true,
+}
func renderAttributes(w util.BufWriter, skipClass bool, attributes ...ast.Attribute) {
for _, attr := range attributes {
if entering {
// Store the current pos so we can capture the rendered text.
- ctx.pos = ctx.Buffer.Len()
+ ctx.pushPos(ctx.Buffer.Len())
return ast.WalkContinue, nil
}
- text := ctx.Buffer.Bytes()[ctx.pos:]
- ctx.Buffer.Truncate(ctx.pos)
+ pos := ctx.popPos()
+ text := ctx.Buffer.Bytes()[pos:]
+ ctx.Buffer.Truncate(pos)
err := h.ImageRenderer.RenderLink(
w,
if entering {
// Store the current pos so we can capture the rendered text.
- ctx.pos = ctx.Buffer.Len()
+ ctx.pushPos(ctx.Buffer.Len())
return ast.WalkContinue, nil
}
- text := ctx.Buffer.Bytes()[ctx.pos:]
- ctx.Buffer.Truncate(ctx.pos)
+ pos := ctx.popPos()
+ text := ctx.Buffer.Bytes()[pos:]
+ ctx.Buffer.Truncate(pos)
err := h.LinkRenderer.RenderLink(
w,
if entering {
// Store the current pos so we can capture the rendered text.
- ctx.pos = ctx.Buffer.Len()
+ ctx.pushPos(ctx.Buffer.Len())
return ast.WalkContinue, nil
}
- text := ctx.Buffer.Bytes()[ctx.pos:]
- ctx.Buffer.Truncate(ctx.pos)
+ pos := ctx.popPos()
+ text := ctx.Buffer.Bytes()[pos:]
+ ctx.Buffer.Truncate(pos)
// All ast.Heading nodes are guaranteed to have an attribute called "id"
// that is an array of bytes that encode a valid string.
anchori, _ := n.AttributeString("id")
return ast.WalkContinue, nil
}
-type links struct {
-}
+type links struct{}
// Extend implements goldmark.Extender.
func (e *links) Extend(m goldmark.Markdown) {