mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-06-28 07:46:58 +00:00
17 lines
360 B
JavaScript
17 lines
360 B
JavaScript
/**
|
|
* Code (block)
|
|
*/
|
|
|
|
const genHtml = require('../core/syntax-highlighter');
|
|
|
|
module.exports = text => {
|
|
const match = text.match(/^```([\s\S]+?)```/);
|
|
if (!match) return null;
|
|
const code = match[0];
|
|
return {
|
|
type: 'code',
|
|
content: code,
|
|
code: code.substr(3, code.length - 6).trim(),
|
|
html: genHtml(code.substr(3, code.length - 6).trim())
|
|
};
|
|
};
|