mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import markdownUtils from './markdownUtils';
|
|
import Setting from './models/Setting';
|
|
import shim from './shim';
|
|
import MarkupToHtml, { MarkupLanguage, Options } from '@joplin/renderer/MarkupToHtml';
|
|
|
|
import htmlUtils from './htmlUtils';
|
|
import Resource from './models/Resource';
|
|
import { PluginStates } from './services/plugins/reducer';
|
|
|
|
export class MarkupLanguageUtils {
|
|
|
|
private lib_(language: MarkupLanguage) {
|
|
if (language === MarkupLanguage.Html) return htmlUtils;
|
|
if (language === MarkupLanguage.Markdown) return markdownUtils;
|
|
throw new Error(`Unsupported markup language: ${language}`);
|
|
}
|
|
|
|
public extractImageUrls(language: MarkupLanguage, text: string) {
|
|
return this.lib_(language).extractImageUrls(text);
|
|
}
|
|
|
|
// Create a new MarkupToHtml instance while injecting options specific to Joplin
|
|
// desktop and mobile applications.
|
|
public newMarkupToHtml(_plugins: PluginStates = null, options: Options = null) {
|
|
const subValues = Setting.subValues('markdown.plugin', Setting.toPlainObject());
|
|
const pluginOptions: any = {};
|
|
for (const n in subValues) {
|
|
pluginOptions[n] = { enabled: subValues[n] };
|
|
}
|
|
|
|
options = Object.assign({
|
|
ResourceModel: Resource,
|
|
pluginOptions: pluginOptions,
|
|
tempDir: Setting.value('tempDir'),
|
|
fsDriver: shim.fsDriver(),
|
|
isSafeMode: Setting.value('isSafeMode'),
|
|
}, options);
|
|
|
|
return new MarkupToHtml(options);
|
|
}
|
|
}
|
|
|
|
const markupLanguageUtils = new MarkupLanguageUtils();
|
|
|
|
export default markupLanguageUtils;
|