Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejh/hugo-theme-cactus-plus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornodejh <jianghangscu@gmail.com>2021-08-16 15:38:32 +0300
committernodejh <jianghangscu@gmail.com>2021-08-16 15:38:32 +0300
commitc293a33d4713edb3ab9879127e1789d2866af155 (patch)
tree8577cc170d4fadddc714970c82f6c5bd19efcf61
parent7af8b5ff2ecfffb770489d5fdbd39d94da17f072 (diff)
fix unwanted spaces in link rendering
-rw-r--r--exampleSite/content/posts/test.md10
-rw-r--r--static/css/style.css4
2 files changed, 14 insertions, 0 deletions
diff --git a/exampleSite/content/posts/test.md b/exampleSite/content/posts/test.md
index f82c40e..f2dbc9f 100644
--- a/exampleSite/content/posts/test.md
+++ b/exampleSite/content/posts/test.md
@@ -7,12 +7,16 @@ tags = [
"shortcodes",
"privacy",
]
+draft = true
+++
## t1
aaaa
+
+Test [aaa](http://example.com) text.
+
### t1.1
aaaa
@@ -72,3 +76,9 @@ org.apache.flink.util.FlinkException: Application failed unexpectedly.
at akka.dispatch.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979) [flink-dist_2.12-1.13.1.jar:1.13.1]
```
+
+```
+test
+test
+test
+``` \ No newline at end of file
diff --git a/static/css/style.css b/static/css/style.css
index b6e9040..9c05c65 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -1,3 +1,7 @@
+html[theme='dark-mode'] {
+ filter: invert(1) hue-rotate(180deg);
+}
+
body {
line-height: 1;
font: normal 15px/1.5em 'Helvetica Neue', Helvetica, Arial, sans-serif;