fix: code render issue

This commit is contained in:
Timothy J. Baek 2024-01-01 10:35:46 -08:00
parent fed6a5b173
commit affa6568d6
2 changed files with 2 additions and 1 deletions

View file

@ -16,7 +16,7 @@ html {
code {
/* white-space-collapse: preserve !important; */
white-space: pre;
overflow-x: auto;
width: auto;
}

View file

@ -88,6 +88,7 @@
let code = block.querySelector('code');
code.style.borderTopRightRadius = 0;
code.style.borderTopLeftRadius = 0;
code.style.whiteSpace = 'pre';
let topBarDiv = document.createElement('div');
topBarDiv.style.backgroundColor = '#202123';