2016-06-06 12:39:23 +08:00
|
|
|
package metadata
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
)
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// NoneParser is the parser for plaintext markdown with no metadata.
|
|
|
|
type NoneParser struct {
|
2016-06-06 12:39:23 +08:00
|
|
|
metadata Metadata
|
|
|
|
markdown *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// Type returns the kind of parser this struct is.
|
|
|
|
func (n *NoneParser) Type() string {
|
2016-06-06 12:39:23 +08:00
|
|
|
return "None"
|
|
|
|
}
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// Init prepases and parses the metadata and markdown file
|
|
|
|
func (n *NoneParser) Init(b *bytes.Buffer) bool {
|
2016-06-06 12:39:23 +08:00
|
|
|
m := make(map[string]interface{})
|
|
|
|
n.metadata = NewMetadata(m)
|
|
|
|
n.markdown = bytes.NewBuffer(b.Bytes())
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the metadata
|
2016-06-21 07:11:29 +08:00
|
|
|
func (n *NoneParser) Parse(b []byte) ([]byte, error) {
|
2016-06-06 12:39:23 +08:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Metadata returns parsed metadata. It should be called
|
|
|
|
// only after a call to Parse returns without error.
|
2016-06-21 07:11:29 +08:00
|
|
|
func (n *NoneParser) Metadata() Metadata {
|
2016-06-06 12:39:23 +08:00
|
|
|
return n.metadata
|
|
|
|
}
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// Markdown returns parsed markdown. It should be called
|
|
|
|
// only after a call to Parse returns without error.
|
|
|
|
func (n *NoneParser) Markdown() []byte {
|
2016-06-06 12:39:23 +08:00
|
|
|
return n.markdown.Bytes()
|
|
|
|
}
|