mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-28 06:30:33 +03:00
parent
20f2211fce
commit
19e12caf8c
4 changed files with 62 additions and 13 deletions
|
@ -14,6 +14,8 @@
|
|||
package converter
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
|
||||
"github.com/gohugoio/hugo/common/loggers"
|
||||
"github.com/gohugoio/hugo/config"
|
||||
"github.com/gohugoio/hugo/identity"
|
||||
|
@ -65,6 +67,18 @@ func (n newConverter) Name() string {
|
|||
return n.name
|
||||
}
|
||||
|
||||
var NopConverter = new(nopConverter)
|
||||
|
||||
type nopConverter int
|
||||
|
||||
func (nopConverter) Convert(ctx RenderContext) (Result, error) {
|
||||
return &bytes.Buffer{}, nil
|
||||
}
|
||||
|
||||
func (nopConverter) Supports(feature identity.Identity) bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// Converter wraps the Convert method that converts some markup into
|
||||
// another format, e.g. Markdown to HTML.
|
||||
type Converter interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue