1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/renderer/MdToHtml/rules/html_image.ts

56 lines
2.5 KiB
TypeScript
Raw Normal View History

2020-11-05 18:58:23 +02:00
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 `<img ${before} ${attributesHtml(r)} ${after}/>`;
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 = /<img(.*?)src=["'](.*?)["'](.*?)>/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 `<img${before}src="${src}"${after}>`;
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);
}
2020-10-24 01:14:30 +02:00
export default { plugin };