mirror of
https://github.com/caddyserver/caddy.git
synced 2025-05-22 17:49:59 +08:00
markdown: Fix panic: assignment to entry in nil map
Ensures metadata.Variables is made
This commit is contained in:
@ -21,7 +21,7 @@ const (
|
||||
// process processes the contents of a page.
|
||||
// It parses the metadata (if any) and uses the template (if found)
|
||||
func (md Markdown) process(c Config, requestPath string, b []byte) ([]byte, error) {
|
||||
var metadata = Metadata{}
|
||||
var metadata = Metadata{Variables: make(map[string]interface{})}
|
||||
var markdown []byte
|
||||
var err error
|
||||
|
||||
|
Reference in New Issue
Block a user