Add search syntax
This commit is contained in:
@@ -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]
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user