Rich text formatting is now available on forum.dlang.org

WebFreak001 d.forum at webfreak.org
Thu Apr 1 12:23:51 UTC 2021


On Thursday, 1 April 2021 at 07:27:38 UTC, Vladimir Panteleev 
wrote:
> [...]
>
> And if the above is not sufficient to express your intent, 
> there is the nuclear option: `$(SCRIPT ...)`, which allows 
> embedding arbitrary JavaScript to format your post in however 
> way you desire. jQuery is preloaded, so go nuts!
>
> [...]

$(SCRIPT function blink_text() {
     $('.blink').fadeOut(500);
     $('.blink').fadeIn(500);
}
setInterval(blink_text, 1000);)

<span class="blink">Awesome!</span>

:(


More information about the Digitalmars-d mailing list