misskey/src/mfm/parse/elements/title.ts
2018-06-26 18:42:00 +09:00

20 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;
}