Files
web/public/tinymce/src/plugins/bbcode/main/ts/api/Settings.ts
2025-10-22 15:39:40 +08:00

15 lines
466 B
TypeScript

/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
const getDialect = function (editor) {
// Note: This option isn't even used since we only support one dialect
return editor.getParam('bbcode_dialect', 'punbb').toLowerCase();
};
export default {
getDialect
};