Я пытаюсь напечатать приведенный ниже код HTML со встроенным Javascript на странице проекта Jenkins (2.241) с помощью плагина Rich Text Publisher, но таблица Javascript загружается в самом низу страницы, а не на справа под ссылкой "Последние изменения" и над надписью "Hello World", где мне это нужно. Как это исправить?
<html>
<body>
<script language="javascript" type="text/javascript">
function tableCreate(){
var body = document.body,
tbl = document.createElement('table');
tbl.style.width = '500px';
tbl.style.border = '1px solid black';
for(var i = 0; i < 5; i++){
var tr = tbl.insertRow();
for(var j = 0; j < 5; j++){
var td = tr.insertCell();
td.appendChild(document.createTextNode('ABC'));
td.style.border = '1px solid black';
}
}
body.appendChild(tbl);
}
tableCreate();
</script>
<p style="font-size:40px">
Hello World.
</p>
</body>
</html>
![enter image description here](https://i.stack.imgur.com/lC774.png)
![enter image description here](https://i.stack.imgur.com/Gja1F.png)