(Markdown) Reduce quantity of "+" in lower-tier headings

This commit is contained in:
2024-04-11 16:15:12 -04:00
parent e3ebcf0db4
commit 468a28a036
+4 -6
View File
@@ -32,8 +32,8 @@ func glamourStyle(styleName string) []byte {
"background_color": "#B16286" "background_color": "#B16286"
}, },
"h2": { "h2": {
"prefix": "+++++", "prefix": "++",
"suffix": "+++++", "suffix": "++",
"color": "#689D6A" "color": "#689D6A"
}, },
"h3": { "h3": {
@@ -42,8 +42,8 @@ func glamourStyle(styleName string) []byte {
"color": "#458588" "color": "#458588"
}, },
"h4": { "h4": {
"prefix": "+++", "prefix": "+",
"suffix": "+++", "suffix": "+",
"color": "#D79921" "color": "#D79921"
}, },
"h5": { "h5": {
@@ -52,8 +52,6 @@ func glamourStyle(styleName string) []byte {
"color": "#98971A" "color": "#98971A"
}, },
"h6": { "h6": {
"prefix": "+",
"suffix": "+",
"color": "#CC241D" "color": "#CC241D"
}, },
"text": {}, "text": {},