helpers: Use pointer receiver for ContentSpec

This commit is contained in:
Bjørn Erik Pedersen 2019-11-04 10:57:11 +01:00
parent ad4c56b551
commit 9abd396789
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
2 changed files with 6 additions and 6 deletions

View File

@ -354,7 +354,7 @@ func getMarkdownExtensions(ctx *RenderingContext) int {
return flags
}
func (c ContentSpec) markdownRender(ctx *RenderingContext) []byte {
func (c *ContentSpec) markdownRender(ctx *RenderingContext) []byte {
if ctx.RenderTOC {
return blackfriday.Markdown(ctx.Content,
c.getHTMLRenderer(blackfriday.HTML_TOC, ctx),
@ -420,7 +420,7 @@ func getMmarkExtensions(ctx *RenderingContext) int {
return flags
}
func (c ContentSpec) mmarkRender(ctx *RenderingContext) []byte {
func (c *ContentSpec) mmarkRender(ctx *RenderingContext) []byte {
return mmark.Parse(ctx.Content, c.getMmarkHTMLRenderer(0, ctx),
getMmarkExtensions(ctx)).Bytes()
}
@ -479,7 +479,7 @@ type RenderingContext struct {
}
// RenderBytes renders a []byte.
func (c ContentSpec) RenderBytes(ctx *RenderingContext) []byte {
func (c *ContentSpec) RenderBytes(ctx *RenderingContext) []byte {
switch ctx.PageFmt {
default:
return c.markdownRender(ctx)
@ -752,7 +752,7 @@ func getPandocContent(ctx *RenderingContext) []byte {
return externallyRenderContent(ctx, path, args)
}
func orgRender(ctx *RenderingContext, c ContentSpec) []byte {
func orgRender(ctx *RenderingContext, c *ContentSpec) []byte {
config := org.New()
config.Log = jww.WARN
config.ReadFile = func(filename string) ([]byte, error) {

View File

@ -23,7 +23,7 @@ import (
)
// Renders a codeblock using Blackfriday
func (c ContentSpec) render(input string) string {
func (c *ContentSpec) render(input string) string {
ctx := &RenderingContext{Cfg: c.Cfg, Config: c.BlackFriday}
render := c.getHTMLRenderer(0, ctx)
@ -33,7 +33,7 @@ func (c ContentSpec) render(input string) string {
}
// Renders a codeblock using Mmark
func (c ContentSpec) renderWithMmark(input string) string {
func (c *ContentSpec) renderWithMmark(input string) string {
ctx := &RenderingContext{Cfg: c.Cfg, Config: c.BlackFriday}
render := c.getMmarkHTMLRenderer(0, ctx)