スニペット文字列をカスタマイズすることは可能ですか
Q.MARS FINDER2.0のスニペット文字列を編集や削除することは可能ですか
A.下記ページに記載のあるsnippet-frags-func属性を用いての方法をご検討ください。
参考:下記ソースはPDF検索結果のみスニペットを非表示とする場合の使用例でございます。
<mf-search-results
:snippet-frags-func="window.my_snippet"
></mf-search-results>
<script>
window.my_snippet = function(doc,i){
if (doc.attrs.type == 'application/pdf' || doc.attrs.type == 'pdf') {
return [{id:0, text:'', type:''}];
}
}
</script>