[MikroTik] âšī¸ Subject
Message-
đ https://eworm.de/
+đ https://rsc.eworm.de/
â° This message was queued since 2025-10-29 16:06:18 and may be obsolete.
âī¸ The message was too long and has been truncated, cut off 13%!
diff --git a/contrib/html.sh b/contrib/html.sh
index 098ba46..03eba23 100755
--- a/contrib/html.sh
+++ b/contrib/html.sh
@@ -14,7 +14,7 @@ markdown -f toc,idanchor "${1}" | sed \
-e 's/href="\([-_\./[:alnum:]]*\)\.md\(#[-[:alnum:]]*\)\?"/href="\1.html\2"/g' \
-e '//s|pre|pre class="code" onclick="CopyToClipboard(this)"|g' \
-e '/The above link may be broken on code hosting sites/s|blockquote|blockquote style="display: none;"|'
sed \
diff --git a/contrib/notification.html b/contrib/notification.html
index 7a6ada7..baa659c 100644
--- a/contrib/notification.html
+++ b/contrib/notification.html
@@ -31,7 +31,7 @@ instead.
[MikroTik] âšī¸ Subject
Message-
đ https://eworm.de/
+đ https://rsc.eworm.de/
â° This message was queued since 2025-10-29 16:06:18 and may be obsolete.
âī¸ The message was too long and has been truncated, cut off 13%!
Hostname:
Subject:
Message:
-Show link:
+Show link:
Queued since
Cut-off with percent
diff --git a/general/clipboard.js b/general/clipboard.js index 30c3134..cbcfa4a 100644 --- a/general/clipboard.js +++ b/general/clipboard.js @@ -1,7 +1,7 @@ /* copy code to clipboard */ function CopyToClipboard(element) { element.style.filter = 'invert(1)'; - navigator.clipboard.writeText(element.firstElementChild.innerHTML); + navigator.clipboard.writeText(element.firstElementChild.textContent); setTimeout(function() { element.style.filter = 'invert(0)'; }, 100); diff --git a/general/style.css b/general/style.css index 191c0f6..25569bb 100644 --- a/general/style.css +++ b/general/style.css @@ -41,13 +41,14 @@ div.content { } img.logo { float: left; - border-radius: 50%; + /* border-radius: 50%; */ } p.foot { color: #777; text-align: center; } p.heading { + font-size: 120%; margin: 0px; font-weight: bold; text-decoration: underline; @@ -58,6 +59,8 @@ p.hint { pre { font-family: fira-mono, monospace; white-space: pre-wrap; +} +pre.code { background-color: #f8f8f8; border: 1px solid #ccc; overflow: auto; @@ -69,7 +72,7 @@ pre code { padding: 0; border: 0; } -pre::before { +pre.code::before { content: "đ Copy!"; float: right; border: 1px solid #ccc;