Add search syntax

This commit is contained in:
syuilo
2018-04-21 18:59:16 +09:00
parent 3c80f0eaca
commit 441796f845
4 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/**
* Search
*/
module.exports = text => {
const match = text.match(/^(.+?) 検索(\n|$)/);
if (!match) return null;
return {
type: 'search',
content: match[0],
query: match[1]
};
};