Add markdown decoration for strikethrough

This commit is contained in:
Shadowfacts 2022-01-20 12:46:27 -05:00
parent 629e3def20
commit b2f064213f
1 changed files with 7 additions and 1 deletions

View File

@ -301,9 +301,15 @@ article {
font-family: var(--monospace-font);
color: var(--secondary-ui-text-color);
}
s::before, s::after {
content: "~~";
font-family: var(--monospace-font);
color: var(--secondary-ui-text-color);
}
code {
strong::before, strong::after,
em::before, em::after {
em::before, em::after,
s::before, s::after {
content: "";
}
}