misskey/src/text/parse/elements/title.ts

15 lines
236 B
TypeScript
Raw Normal View History

2018-04-19 06:05:39 +00:00
/**
* Title
*/
module.exports = text => {
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)
};
};