mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-06-15 09:26:57 +00:00
20 lines
352 B
TypeScript
20 lines
352 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;
|
|
}
|