| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import path from 'path';
- import { Schema as SanitizeOption } from 'hast-util-sanitize';
- import { Plugin } from 'unified';
- import { Node } from 'unist';
- import { visit } from 'unist-util-visit';
- const SUPPORTED_ATTRIBUTES = ['attachmentId', 'url', 'attachmentName'];
- const isAttachmentLink = (url: string): boolean => {
- // https://regex101.com/r/9qZhiK/1
- const attachmentUrlFormat = new RegExp(/^\/(attachment)\/([^/^\n]+)$/);
- return attachmentUrlFormat.test(url);
- };
- const rewriteNode = (node: Node) => {
- const attachmentId = path.basename(node.url as string);
- const data = node.data ?? (node.data = {});
- data.hName = 'attachment';
- data.hProperties = {
- attachmentId,
- url: node.url,
- attachmentName: (node.children as any)[0]?.value,
- };
- };
- export const remarkPlugin: Plugin = () => {
- return (tree) => {
- visit(tree, (node) => {
- if (node.type === 'link') {
- if (isAttachmentLink(node.url as string)) {
- rewriteNode(node);
- }
- }
- });
- };
- };
- export const sanitizeOption: SanitizeOption = {
- tagNames: ['attachment'],
- attributes: {
- attachment: SUPPORTED_ATTRIBUTES,
- },
- };
|