From 3a1872c03ef684b38d3c40aa3728233912805b5b Mon Sep 17 00:00:00 2001 From: ahangarha Date: Fri, 11 Jun 2021 11:53:28 +0000 Subject: [PATCH 1/2] Draw side line for blockquote on start By this change, the line beside blockquote would appear at start. It means if the text is in LTR language, it appears on left and if it is in RTL, the line appears on right. --- assets/themes/default/_article.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/themes/default/_article.scss b/assets/themes/default/_article.scss index 5d1ee909..9bc887d5 100644 --- a/assets/themes/default/_article.scss +++ b/assets/themes/default/_article.scss @@ -98,7 +98,7 @@ main article { } blockquote { - border-left: 5px solid $gray; + border-inline-start: 5px solid $gray; margin: 1em auto; padding: 0em 2em; } From 7fe1e083e0f7ee4e851904b0765a78e54d111673 Mon Sep 17 00:00:00 2001 From: Trinity Pointard Date: Sat, 10 Jul 2021 13:34:13 +0200 Subject: [PATCH 2/2] use newer pulldown-cmark --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 63f295b0..f194e1da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3177,7 +3177,7 @@ dependencies = [ [[package]] name = "pulldown-cmark" version = "0.8.0" -source = "git+https://git.joinplu.me/Plume/pulldown-cmark?branch=bidi-plume#f485d6bf18921277f493e1300e160b07e3756c3b" +source = "git+https://git.joinplu.me/Plume/pulldown-cmark?branch=bidi-plume#58514a67a52d0fa2233160bd0e8933684397bfd6" dependencies = [ "bitflags 1.2.1", "memchr",