commit 2ce28303518c42cd17096145beecc1c89110429f
parent aaeb755c64e5e8158243e02523142ce7e185375c
Author: NunoSempere <nuno.sempere@protonmail.com>
Date: Fri, 15 Sep 2023 12:39:14 +0300
in readability, center images and add max-width.
Diffstat:
4 files changed, 16 insertions(+), 10 deletions(-)
diff --git a/plugins/readability/readability.c b/plugins/readability/readability.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#define READABILITY_N 85314 + 1000
+#define READABILITY_N 85433 + 1000
void read_readability_js(char* string)
{
diff --git a/plugins/readability/readability.h b/plugins/readability/readability.h
@@ -1,7 +1,7 @@
#ifndef READABILITY
#define READABILITY
-#define READABILITY_N 85314 + 1000
+#define READABILITY_N 85433 + 1000
void read_readability_js(char* string);
diff --git a/plugins/readability/readability.js b/plugins/readability/readability.js
@@ -2377,10 +2377,18 @@ document.body.innerHTML = `<h1>${article.title}</h1>\n${article.content}`
/* Hack for archive.is */
-var styles
+var styles = `
+img {
+ max-width: 80% !important;
+ height: auto;
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+`
if (document.domain == "archive.is" ){
- styles = `
+ styles+= `
li > span {
display: none !important;
@@ -2400,9 +2408,7 @@ if (document.domain == "archive.is" ){
`
}
-if(styles != null){
- var styleSheet = document.createElement('style')
- styleSheet.innerText = styles
- document.head.appendChild(styleSheet)
- console.log('Style changed')
-}
+var styleSheet = document.createElement('style')
+styleSheet.innerText = styles
+document.head.appendChild(styleSheet)
+console.log('Style changed')
diff --git a/rose b/rose
Binary files differ.