mirror of https://github.com/usememos/memos
parent
523ef2bba5
commit
dbc85fe7e4
@ -0,0 +1,55 @@
|
|||||||
|
package parser
|
||||||
|
|
||||||
|
import "github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
||||||
|
|
||||||
|
type ImageParser struct {
|
||||||
|
AltText string
|
||||||
|
URL string
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewImageParser() *ImageParser {
|
||||||
|
return &ImageParser{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*ImageParser) Match(tokens []*tokenizer.Token) *ImageParser {
|
||||||
|
if len(tokens) < 5 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if tokens[0].Type != tokenizer.ExclamationMark {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if tokens[1].Type != tokenizer.LeftSquareBracket {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
cursor, altText := 2, ""
|
||||||
|
for ; cursor < len(tokens)-2; cursor++ {
|
||||||
|
if tokens[cursor].Type == tokenizer.Newline {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if tokens[cursor].Type == tokenizer.RightSquareBracket {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
altText += tokens[cursor].Value
|
||||||
|
}
|
||||||
|
if tokens[cursor+1].Type != tokenizer.LeftParenthesis {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
matched, url := false, ""
|
||||||
|
for _, token := range tokens[cursor+2:] {
|
||||||
|
if token.Type == tokenizer.Newline || token.Type == tokenizer.Space {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if token.Type == tokenizer.RightParenthesis {
|
||||||
|
matched = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
url += token.Value
|
||||||
|
}
|
||||||
|
if !matched || url == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return &ImageParser{
|
||||||
|
AltText: altText,
|
||||||
|
URL: url,
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package parser
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestImageParser(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
text string
|
||||||
|
image *ImageParser
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
text: "",
|
||||||
|
image: &ImageParser{
|
||||||
|
AltText: "",
|
||||||
|
URL: "https://example.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "! [](https://example.com)",
|
||||||
|
image: nil,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "",
|
||||||
|
image: nil,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "",
|
||||||
|
image: &ImageParser{
|
||||||
|
AltText: "al te",
|
||||||
|
URL: "https://example.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, test := range tests {
|
||||||
|
tokens := tokenizer.Tokenize(test.text)
|
||||||
|
require.Equal(t, test.image, NewImageParser().Match(tokens))
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,58 @@
|
|||||||
|
package parser
|
||||||
|
|
||||||
|
import "github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
||||||
|
|
||||||
|
type LinkParser struct {
|
||||||
|
ContentTokens []*tokenizer.Token
|
||||||
|
URL string
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewLinkParser() *LinkParser {
|
||||||
|
return &LinkParser{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*LinkParser) Match(tokens []*tokenizer.Token) *LinkParser {
|
||||||
|
if len(tokens) < 4 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if tokens[0].Type != tokenizer.LeftSquareBracket {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
cursor, contentTokens := 1, []*tokenizer.Token{}
|
||||||
|
for ; cursor < len(tokens)-2; cursor++ {
|
||||||
|
if tokens[cursor].Type == tokenizer.Newline {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if tokens[cursor].Type == tokenizer.RightSquareBracket {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
contentTokens = append(contentTokens, tokens[cursor])
|
||||||
|
}
|
||||||
|
if tokens[cursor+1].Type != tokenizer.LeftParenthesis {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
matched, url := false, ""
|
||||||
|
for _, token := range tokens[cursor+2:] {
|
||||||
|
if token.Type == tokenizer.Newline || token.Type == tokenizer.Space {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if token.Type == tokenizer.RightParenthesis {
|
||||||
|
matched = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
url += token.Value
|
||||||
|
}
|
||||||
|
if !matched || url == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if len(contentTokens) == 0 {
|
||||||
|
contentTokens = append(contentTokens, &tokenizer.Token{
|
||||||
|
Type: tokenizer.Text,
|
||||||
|
Value: url,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return &LinkParser{
|
||||||
|
ContentTokens: contentTokens,
|
||||||
|
URL: url,
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
package parser
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestLinkParser(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
text string
|
||||||
|
link *LinkParser
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
text: "[](https://example.com)",
|
||||||
|
link: &LinkParser{
|
||||||
|
ContentTokens: []*tokenizer.Token{
|
||||||
|
{
|
||||||
|
Type: tokenizer.Text,
|
||||||
|
Value: "https://example.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
URL: "https://example.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "! [](https://example.com)",
|
||||||
|
link: nil,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "[alte]( htt ps :/ /example.com)",
|
||||||
|
link: nil,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "[hello world](https://example.com)",
|
||||||
|
link: &LinkParser{
|
||||||
|
ContentTokens: []*tokenizer.Token{
|
||||||
|
{
|
||||||
|
Type: tokenizer.Text,
|
||||||
|
Value: "hello",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Type: tokenizer.Space,
|
||||||
|
Value: " ",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Type: tokenizer.Text,
|
||||||
|
Value: "world",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
URL: "https://example.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, test := range tests {
|
||||||
|
tokens := tokenizer.Tokenize(test.text)
|
||||||
|
require.Equal(t, test.link, NewLinkParser().Match(tokens))
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue