1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-06-21 18:32:02 +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> </a>
) )
}); });
markdownDecorators.push(emojiDecorator); // markdownDecorators.push(emojiDecorator);
// TODO Consider renabling "syntax highlighting" when we can do it properly
return markdownDecorators; return [emojiDecorator];
} }
/** /**