1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

Desktop, Mobile: Fixed issue where file:// URLs would not be rendered correctly

This commit is contained in:
Laurent Cozic
2021-01-02 16:53:59 +00:00
parent 34c1096307
commit 491714cde6
10 changed files with 138 additions and 63 deletions

View File

@@ -2,7 +2,8 @@ import MarkupToHtml, { MarkupLanguage } from './MarkupToHtml';
import MdToHtml from './MdToHtml';
import HtmlToHtml from './HtmlToHtml';
import utils from './utils';
const setupLinkify = require('./MdToHtml/setupLinkify');
import setupLinkify from './MdToHtml/setupLinkify';
import validateLinks from './MdToHtml/validateLinks';
const assetsToHeaders = require('./assetsToHeaders');
export {
@@ -11,6 +12,7 @@ export {
MdToHtml,
HtmlToHtml,
setupLinkify,
validateLinks,
assetsToHeaders,
utils,
};