<div class="mermaid">
- {{- .Code | safeHTML }}
+ {{- .Inner | safeHTML }}
</div>
{{ .Page.Store.Set "hasMermaid" true }}
switch v := ctx.(type) {
case hooks.CodeblockContext:
- offset = bytes.Index(p.p.source.parsed.Input(), []byte(v.Code()))
+ offset = bytes.Index(p.p.source.parsed.Input(), []byte(v.Inner()))
}
pos := p.p.posFromInput(p.p.source.parsed.Input(), offset)
AttributesProvider
text.Positioner
Options() map[string]interface{}
- Lang() string
- Code() string
+ Type() string
+ Inner() string
Ordinal() int
Page() interface{}
}
style = 'monokai'
tabWidth = 4
-- layouts/_default/_markup/render-codeblock-goat.html --
-{{ $diagram := diagrams.Goat .Code }}
+{{ $diagram := diagrams.Goat .Inner }}
Goat SVG:{{ substr $diagram.SVG 0 100 | safeHTML }} }}|
Goat Attribute: {{ .Attributes.width}}|
-- layouts/_default/_markup/render-codeblock-go.html --
-Go Code: {{ .Code | safeHTML }}|
-Go Language: {{ .Lang }}|
+Go Code: {{ .Inner | safeHTML }}|
+Go Language: {{ .Type }}|
-- layouts/_default/single.html --
{{ .Content }}
-- content/p1.md --
-- layouts/_default/single.html --
{{ .Content }}
-- layouts/_default/_markup/render-codeblock.html --
-|{{ .Code | safeHTML }}|
+|{{ .Inner | safeHTML }}|
`
return c.page
}
-func (c *codeBlockContext) Lang() string {
+func (c *codeBlockContext) Type() string {
return c.lang
}
-func (c *codeBlockContext) Code() string {
+func (c *codeBlockContext) Inner() string {
return c.code
}
return HightlightResult{}, err
}
- err := highlight(&b, ctx.Code(), ctx.Lang(), attributes, cfg)
+ err := highlight(&b, ctx.Inner(), ctx.Type(), attributes, cfg)
if err != nil {
return HightlightResult{}, err
}
return err
}
- code := text.Puts(ctx.Code())
+ code := text.Puts(ctx.Inner())
- return highlight(w, code, ctx.Lang(), attributes, cfg)
+ return highlight(w, code, ctx.Type(), attributes, cfg)
}
func (h chromaHighlighter) IsDefaultCodeBlockRenderer() bool {
{{ $height := .Attributes.height }}
{{ $class := .Attributes.class | default "" }}
<div class="goat svg-container {{ $class }}">
- {{ with diagrams.Goat .Code }}
+ {{ with diagrams.Goat .Inner }}
<svg
xmlns="http://www.w3.org/2000/svg"
font-family="Menlo,Lucida Console,monospace"