woodpecker/docs/plugins/woodpecker-plugins/src/markdown.ts

29 lines
884 B
TypeScript
Raw Normal View History

2023-12-02 13:48:26 +00:00
import DOMPurify from 'isomorphic-dompurify';
2021-11-27 14:13:00 +00:00
import { marked } from 'marked';
import { parse as YAMLParse } from 'yaml';
const tokens = ['---', '---'];
const regexHeader = new RegExp('^' + tokens[0] + '([\\s|\\S]*?)' + tokens[1]);
2021-11-27 14:13:00 +00:00
const regexContent = new RegExp('^ *?\\' + tokens[0] + '[^]*?' + tokens[1] + '*');
export function getHeader<T = any>(data: string): T {
const header = getRawHeader(data);
return YAMLParse(header) as T;
}
export function getRawHeader(data: string): string {
const header = regexHeader.exec(data);
if (!header) {
throw new Error("Can't get the header");
}
return header[1];
}
export function getContent(data: string): string {
const content = data.replace(regexContent, '').replace(/<!--(.*?)-->/gm, '');
if (!content) {
throw new Error("Can't get the content");
}
2023-12-02 13:48:26 +00:00
return DOMPurify.sanitize(marked(content) as string);
}