🔨 Update docs Termynal scripts to not include line nums for local dev (#11854)

This commit is contained in:
Sebastián Ramírez authored and GitHub committed 2024-07-16 21:12:29 -05:00
1 parent 67ed86cb7f
commit 7bbddf012c
2 files changed
+5 -1

No files matched your search

+4
View File
@@ -13,6 +13,10 @@
white-space: pre-wrap;
}
.termy .linenos {
display: none;
}
a.external-link {
/* For right to left languages */
direction: ltr;
+1 -1
View File
@@ -35,7 +35,7 @@ function setupTermynal() {
function createTermynals() {
document
.querySelectorAll(`.${termynalActivateClass} .highlight`)
.querySelectorAll(`.${termynalActivateClass} .highlight code`)
.forEach(node => {
const text = node.textContent;
const lines = text.split("\n");