1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Mobile: Plugin API: Add support for the renderMarkup command (#11494)

This commit is contained in:
Henry Heino
2024-12-13 04:55:51 -08:00
committed by GitHub
parent 81f3a02dba
commit 815b922988
7 changed files with 19 additions and 19 deletions

View File

@ -4,6 +4,7 @@ import * as historyBackward from './historyBackward';
import * as historyForward from './historyForward';
import * as openMasterPasswordDialog from './openMasterPasswordDialog';
import * as permanentlyDeleteNote from './permanentlyDeleteNote';
import * as renderMarkup from './renderMarkup';
import * as synchronize from './synchronize';
const index: any[] = [
@ -12,6 +13,7 @@ const index: any[] = [
historyForward,
openMasterPasswordDialog,
permanentlyDeleteNote,
renderMarkup,
synchronize,
];