Ask Lemmy
A Fediverse community for open-ended, thought provoking questions
Rules: (interactive)
1) Be nice and; have fun
Doxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them
2) All posts must end with a '?'
This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?
3) No spam
Please do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.
4) NSFW is okay, within reason
Just remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com.
NSFW comments should be restricted to posts tagged [NSFW].
5) This is not a support community.
It is not a place for 'how do I?', type questions.
If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.
6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online
Reminder: The terms of service apply here too.
Partnered Communities:
Logo design credit goes to: tubbadu
view the rest of the comments
Technically, email supports markdown, it’s just not used by anyone. Email was invented many years before markdown, so it’s probably just more of a legacy thing than anything else.
Oh, I understand all that. I just don’t like it.
It does support markdown???? I always thought it didn't.
The protocol supports anything. You can send an email in PDF format. And I don’t mean with a PDF attachment, I mean the email itself is formatted as a PDF.
The default that’s required to be supported by every client is
text/plain
, and the standard on top of that istext/html
, but you can providetext/markdown
instead if you want. If the client doesn’t support displaying markdown, it will probably let the user save it like it was an attachment. But, since you don’t really know what client the other user is using, the only really safe thing to send istext/plain
.You can also provide both markdown and plain text (and even just use the same text, since markdown is perfectly readable) inside a
multipart/alternative
. Then every client should be able to display it.Thank you for sharing this knowledge.