21 lines
361 B
TypeScript
21 lines
361 B
TypeScript
/**
|
|
* Title
|
|
*/
|
|
|
|
export type TextElementTitle = {
|
|
type: 'title'
|
|
content: string
|
|
title: string
|
|
};
|
|
|
|
export default function(text: string) {
|
|
const match = text.match(/^(【|\[)(.+?)(】|])\n/);
|
|
if (!match) return null;
|
|
const title = match[0];
|
|
return {
|
|
type: 'title',
|
|
content: title,
|
|
title: title.substr(1, title.length - 3)
|
|
} as TextElementTitle;
|
|
}
|