This commit is contained in:
Daniel 2023-08-04 12:32:29 +08:00
parent afb698d1fe
commit c737ecabb6
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -160,7 +160,9 @@ func (searcher *AssetsSearcher) FullIndex() {
func NewAssetsSearcher() *AssetsSearcher {
return &AssetsSearcher{
Parsers: map[string]AssetParser{
".txt": &TxtAssetParser{},
".txt": &TxtAssetParser{},
".md": &TxtAssetParser{},
".markdown": &TxtAssetParser{},
},
lock: &sync.Mutex{},