Merge pull request 'Mise en forme des codes ANSI dans les logs' (#8) from augustin64/MsRewards-Reborn:augustin64-ansi-up into master

Reviewed-on: piair/MsRewards-Reborn#8
This commit is contained in:
piair 2024-03-28 23:56:33 +01:00
commit 178f2d472a

View File

@ -15,7 +15,17 @@
<br><br>
<iframe type="text/html" src="{{url_for('static', filename='logs/1.txt')}}" width="100%" height="85%" id="embed">
<script type="text/javascript">
const subdoc = document.getElementsByTagName("iframe")[0].contentWindow.document;
var script = document.createElement('script');
script.onload = function () {
const ansiOutput = subdoc.getElementsByTagName("body")[0].getElementsByTagName("pre")[0]
const ansi_up = new AnsiUp();
ansiOutput.innerHTML = ansi_up.ansi_to_html(ansiOutput.innerText)
};
script.src = "https://cdn.jsdelivr.net/npm/ansi_up@4.0.4/ansi_up.js";
document.head.appendChild(script);
</script>
{% endif %}
{% endblock %}