#thank you for this i’ve always wanted something like that
1 messages · Page 1 of 1 (latest)
motherfucker
?
i’d also suggest you use selectors like [class*="blockquoteContainer"] instead of .blockquoteContainer__75297 as that’s more futureproof
and also in bigger codeblocks it doesn’t show the language name
as someone who has trouble making efficient themes,and have used futureproof selectors before, FUCK FUTUREPROOF SELECTORS
why?
it never did
what do you dislike about them
they are laggy, they overapply and are generally more hassle than sticking a snippet in a class updater
thank you for your theme
underline doesn’t seem supported
u {
text-decoration: none;
&::before {
content: "__";
}
&::after {
content: "__";
}
}
this codeblocks adds underline support
strikethrough support:
s {
text-decoration: none;
&::before {
content: "~~";
}
&::after {
content: "~~";
}
}
you can also replace font-weight: initial; in the em section by font-style: normal; if you don’t want italic to still apply
using
code::before {
content: "\```
" attr(class) "\a";
}
code::after {
content: "\a\```";
}
i am very close to make it work
for some reason the code snipet completely breaks discord
in any case it shows every classes when we only want it to show the last class
fuck it i’ll just brute force it
no that doesn’t work because there could be anything not just valid languages
it’s basically impossible with just css
list support
ul > li {
list-style: none;
}
ul > li:before {
display: inline-block;
content: "-";
width: 1em;
margin-left: -1em;
}
- list
- list
- list
- list
- list
- list
- list
- list
you can use * if you prefer
Why are you this dedicated to one of my shitposts
because i’ve always wanted something like that
What even is this for ?
show the text as it was typed and not how discord renders it
this is evil i love it
So it disables the background html and disprettyfy it
Make it looks like it was writing in the console
no you can’t do that with css
direct text, but yes
it’s only making it look more like it was written
Ah
edited to not break numbered lists