mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Add <code> if it's missing
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
87a2454556
commit
6149567c62
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user