mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-04-03 10:01:08 +03:00
19 lines
335 B
TypeScript
19 lines
335 B
TypeScript
/**
|
||
* Search
|
||
*/
|
||
|
||
export type TextElementSearch = {
|
||
type: 'search';
|
||
content: string;
|
||
query: string;
|
||
};
|
||
|
||
export default function(text: string) {
|
||
const match = text.match(/^(.+?)( | )(検索|\[検索\]|Search|\[Search\])(\n|$)/i);
|
||
if (!match) return null;
|
||
return {
|
||
type: 'search',
|
||
content: match[0],
|
||
query: match[1]
|
||
};
|
||
}
|