Settings
Available symbols:
All characters: !"#%&'()*+,-./{|}<>_~ (= 21, 3 already used, 18 free to modify)
Categories:
Interpunction: , . !
Brackets: ( ) { } < >
Ligatures: &
Dashes: _
Quotation marks: " '
Other: # % | ~ / *
Already used: * / -
Colored starting page
code:style.css
data-page-title*="Start here" > a {
background-color:#fafbe4 !important;
}
data-page-title*="Start here" > a > .content > .header > .title {
color: red;
}
To be changed
code:style.css
.deco-\< {
color: black;
background-color: azure;
display:inline-block;
width: 100%;
border-left: solid 4px blue;
padding-left: 4px
/*background-color: #f0b9a3;*/
}
underlined text
code:style.css
.deco-\_ {
display:inline-block;
width: 100%;
border-bottom: solid 1px grey;
padding-left: 4px;
}
centered text
code:style.css
/* Centered text or image */
.deco-\% {
display:inline-block;
width: 100%;
text-align: center;
}
Red text
code:style.css
.deco-\! {
color: red;
/*background-color: #f0b9a3;*/
}
Yellow block
Related to: Block formatting
code:style.css
.deco-\" {
background-color: #fff3cd;
display:inline-block;
width:100%;
border: 1px solid #ffeeba;
padding-left: 5px;
padding-right: 5px;
margin-bottom: 5px;
/*background-color: #f0b9a3;*/
}
Fixes
Fixing blockquote
code:style.css
/* Removes > from the beginning of blockquote */
:is(.linestyle="", .line:not(style) ) .quote > .tag > span {
display: none !important;
}