import { RuleOptions } from '../../MdToHtml';
import { attributesHtml } from '../../htmlUtils';
import * as utils from '../../utils';
function renderImageHtml(before: string, src: string, after: string, ruleOptions: RuleOptions) {
const r = utils.imageReplacement(ruleOptions.ResourceModel, { src, before, after }, ruleOptions.resources, ruleOptions.resourceBaseUrl, ruleOptions.itemIdToUrl);
if (typeof r === 'string') return r;
if (r) return ``;
return `[Image: ${src}]`;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
function plugin(markdownIt: any, ruleOptions: RuleOptions) {
const Resource = ruleOptions.ResourceModel;
const htmlBlockDefaultRender =
markdownIt.renderer.rules.html_block ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
function(tokens: any[], idx: number, options: any, _env: any, self: any) {
return self.renderToken(tokens, idx, options);
};
const htmlInlineDefaultRender =
markdownIt.renderer.rules.html_inline ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
function(tokens: any[], idx: number, options: any, _env: any, self: any) {
return self.renderToken(tokens, idx, options);
};
const imageRegex = //gi;
// eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied
const handleImageTags = function(defaultRender: Function) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
return function(tokens: any[], idx: number, options: any, env: any, self: any) {
const token = tokens[idx];
const content = token.content;
if (!content.match(imageRegex)) return defaultRender(tokens, idx, options, env, self);
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
return content.replace(imageRegex, (_v: any, before: string, src: string, after: string) => {
if (!Resource.isResourceUrl(src)) return ``;
return renderImageHtml(before, src, after, ruleOptions);
});
};
};
// It seems images sometimes are inline, sometimes a block
// to make sure they both render correctly.
markdownIt.renderer.rules.html_block = handleImageTags(htmlBlockDefaultRender);
markdownIt.renderer.rules.html_inline = handleImageTags(htmlInlineDefaultRender);
}
export default { plugin };