oktoberpaard@feddit.nltoTechnology@lemmy.ml•Google will be deleting inactive google accounts together with all data on them starting December 1, 2023English
1·
1 year agoIt’s in the bottom part of the text: they will send an email to the account itself and to recovery email addresses.
It’s Markdown syntax. You can actually format it nicely in a code block:
bool isEven( long long x ) { if ( x < 0 ) x = -x; if ( x == 1 ) return false; if ( x == 2 ) return true; return isEven( x - 2 ); }
You do that by adding ``` above and below it. To force single line breaks, you can terminate your sentences with two spaces, or a backslash.