mirror of
https://github.com/usememos/memos.git
synced 2025-01-09 21:59:35 +08:00
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package parser
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/usememos/memos/plugin/gomark/ast"
|
|
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
|
)
|
|
|
|
type BlockquoteParser struct{}
|
|
|
|
func NewBlockquoteParser() *BlockquoteParser {
|
|
return &BlockquoteParser{}
|
|
}
|
|
|
|
func (*BlockquoteParser) Match(tokens []*tokenizer.Token) (int, bool) {
|
|
if len(tokens) < 4 {
|
|
return 0, false
|
|
}
|
|
if tokens[0].Type != tokenizer.GreaterThan || tokens[1].Type != tokenizer.Space {
|
|
return 0, false
|
|
}
|
|
|
|
contentTokens := []*tokenizer.Token{}
|
|
for _, token := range tokens[2:] {
|
|
contentTokens = append(contentTokens, token)
|
|
if token.Type == tokenizer.Newline {
|
|
break
|
|
}
|
|
}
|
|
if len(contentTokens) == 0 {
|
|
return 0, false
|
|
}
|
|
|
|
return len(contentTokens) + 2, true
|
|
}
|
|
|
|
func (p *BlockquoteParser) Parse(tokens []*tokenizer.Token) (ast.Node, error) {
|
|
size, ok := p.Match(tokens)
|
|
if size == 0 || !ok {
|
|
return nil, errors.New("not matched")
|
|
}
|
|
|
|
contentTokens := tokens[2:size]
|
|
children, err := ParseInline(contentTokens)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ast.Blockquote{
|
|
Children: children,
|
|
}, nil
|
|
}
|