You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Add <code> if it's missing
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
@@ -96,6 +96,14 @@ export default class TextualBody extends React.Component {
|
|||||||
const pres = ReactDOM.findDOMNode(this).getElementsByTagName("pre");
|
const pres = ReactDOM.findDOMNode(this).getElementsByTagName("pre");
|
||||||
if (pres.length > 0) {
|
if (pres.length > 0) {
|
||||||
for (let i = 0; i < pres.length; i++) {
|
for (let i = 0; i < pres.length; i++) {
|
||||||
|
let code = pres[i].getElementsByTagName("code")[0];
|
||||||
|
// Add code element if it's missing
|
||||||
|
if (!code) {
|
||||||
|
code = document.createElement("code");
|
||||||
|
code.innerHTML = pres[i].innerHTML;
|
||||||
|
pres[i].innerHTML = "";
|
||||||
|
pres[i].appendChild(code);
|
||||||
|
}
|
||||||
// If there already is a div wrapping the codeblock we want to skip this.
|
// If there already is a div wrapping the codeblock we want to skip this.
|
||||||
// This happens after the codeblock was edited.
|
// This happens after the codeblock was edited.
|
||||||
if (pres[i].parentNode.className == "mx_EventTile_pre_container") continue;
|
if (pres[i].parentNode.className == "mx_EventTile_pre_container") continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user