mirror of
https://github.com/mickael-menu/zk
synced 2024-11-15 12:12:56 +00:00
dc27a7dd7c
Fallback wiki link resolution by matching on title or path Add new template variables when generating Markdown links Add a {{substring}} template helper
19 lines
414 B
Go
19 lines
414 B
Go
package core
|
|
|
|
type noteContentParserMock struct {
|
|
results map[string]*NoteContent
|
|
}
|
|
|
|
func newNoteContentParserMock(results map[string]*NoteContent) *noteContentParserMock {
|
|
return ¬eContentParserMock{
|
|
results: results,
|
|
}
|
|
}
|
|
|
|
func (p *noteContentParserMock) ParseNoteContent(content string) (*NoteContent, error) {
|
|
if note, ok := p.results[content]; ok {
|
|
return note, nil
|
|
}
|
|
return &NoteContent{}, nil
|
|
}
|