* refactor: move CodeEditor to shared components and remove circular dependency * feat: add code editor to problem editor * fix: typo * feat: add save function to raw olx editor and add highlighting * feat: simplify and add tests to edit problem view * feat: add tests to problem edit view * fix: update raw editor tests * fix: code editor tests * fix: package-lock * fix: lint
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
export const messages = {
|
|
escapeHTMLButtonLabel: {
|
|
id: 'authoring.texteditor.codeEditor.escapeHTMLButton',
|
|
defaultMessage: 'Unescape HTML Literals',
|
|
description: 'Label For escape special html charectars button',
|
|
},
|
|
};
|
|
|
|
export default messages;
|