1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-06-20 07:02:16 +03:00

Disable "syntax highlighting" in MD mode (RTE)

This commit is contained in:
Aviral Dasgupta
2016-10-11 19:16:35 +05:30
parent 65ce8c2113
commit ab3b6497f9

View File

@ -146,9 +146,9 @@ export function getScopedMDDecorators(scope: any): CompositeDecorator {
</a>
)
});
markdownDecorators.push(emojiDecorator);
return markdownDecorators;
// markdownDecorators.push(emojiDecorator);
// TODO Consider renabling "syntax highlighting" when we can do it properly
return [emojiDecorator];
}
/**