A simple addon that will force all post to be "Sentence case".
http://lmgtfy.com/?q=Sentence+case
http://lmgtfy.com/?q=Sentence+case
Hmm yeah, I just want to eliminate post having all capital letters on it :/.How would this even work? What about proper nouns, acronyms, etc?
Hmm yeah, I just want to eliminate post having all capital letters on it :/.
/* Sentence Case */
.messageText {
text-transform: lowercase;
}
.messageText::first-letter {
text-transform: uppercase;
}
Technically this won't work for proper nouns and acronyms and such. So I might recommend not doing the lowercase part. But the first-letter upercase makes sense to me.I think I got it working now.
Thanks for the hint Mike .
That I don't know how.Could do a check first to see if all letters in a post are capitalized
That I don't know how.
If it's possible with only CSS.
Non custom addon path:
Step 1. Use CSS to convert all sentences as you want it to be.
Step 2. To handle acronyms, use one of the many keyword replace addons on here so they are capitalised etc. You will need to feed all the used acronyms into the addon though. Keyword replace addons are a must have anyway with most having link attribute properties to redirect your users to other knowledge sections within a site.
I think I got it working now.
Thanks for the hint Mike .
We use essential cookies to make this site work, and optional cookies to enhance your experience.