From 3a041e0a85062593c2e9fec28cc7613b30bebcdc Mon Sep 17 00:00:00 2001 From: FireGrace Date: Mon, 15 Apr 2019 21:21:19 +0300 Subject: [PATCH 1/2] Apply filter to . As now, some hex values are in uppercase. To unify the page, and prevent this from happening, we can apply lower filter. Pros: > Easy of copy-paste --- basics_dev/style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basics_dev/style-guide.md b/basics_dev/style-guide.md index 32f0259a..fcc94001 100644 --- a/basics_dev/style-guide.md +++ b/basics_dev/style-guide.md @@ -36,7 +36,7 @@ The following **grayscale** colors are currently used on the Qubes website and d
{{color.name}} - #{{color.hex}} + #{{color.hex | lower}}
{% endif %} {% endfor %} @@ -50,7 +50,7 @@ The following **colors** are currently being used on the Qubes website and docum
{{color.name}} - #{{color.hex}} + #{{color.hex | lower}}
{% endif %} {% endfor %} From d88e7a8b7bbc2f1b0a8babdc6ffc65459d59baf6 Mon Sep 17 00:00:00 2001 From: Andrew David Wong Date: Mon, 15 Apr 2019 21:39:46 -0500 Subject: [PATCH 2/2] Use `downcase` instead of `lower` --- basics_dev/style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basics_dev/style-guide.md b/basics_dev/style-guide.md index fcc94001..ada9121c 100644 --- a/basics_dev/style-guide.md +++ b/basics_dev/style-guide.md @@ -36,7 +36,7 @@ The following **grayscale** colors are currently used on the Qubes website and d
{{color.name}} - #{{color.hex | lower}} + #{{color.hex | downcase}}
{% endif %} {% endfor %} @@ -50,7 +50,7 @@ The following **colors** are currently being used on the Qubes website and docum
{{color.name}} - #{{color.hex | lower}} + #{{color.hex | downcase}}
{% endif %} {% endfor %}