this post was submitted on 23 Jul 2026
198 points (88.4% liked)

memes

22393 readers
1856 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to !politicalmemes@lemmy.world

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/Ads/AI SlopNo advertisements or spam. This is an instance rule and the only way to live. We also consider AI slop to be spam in this community and is subject to removal.

A collection of some classic Lemmy memes for your enjoyment

Sister communities

founded 3 years ago
MODERATORS
 

Change my mind.

you are viewing a single comment's thread
view the rest of the comments
[–] twinnie@feddit.uk 4 points 3 weeks ago (3 children)

Markdown is so annoying. I wanted to record a command in Joplin and had the audacity to make it bold to highlight something. Pasted it into their terminal and it put a bunch of asterisks in. Thanks.

[–] crunchy@lemmy.dbzer0.com 5 points 3 weeks ago (1 children)

Try pasting commands into code blocks.

[–] trem@lemmy.blahaj.zone 1 points 3 weeks ago

If they wanted to make a specific part of the command bold, that still wouldn't work.

Could underline the part, I guess, like this:

ls -la
   ###

(# starts a comment in shell syntax, so doesn't get run, in case someone pastes the whole thing.)

[–] ChaoticNeutralCzech@feddit.org 2 points 3 weeks ago* (last edited 3 weeks ago)

It does format text in the editor pane by default now but uses a big warning with a button to disable it.

However, the built-in code highlighter, much
like in many Lemmy frontends, highlights
some words/symbols depending on the default
language. Therefore, it's best to not use 
4 spaces at the start of each line for a code block.
Instead, this one starts with "```text" and 
ends with "```". No extra indents and I get
to specify the highlighting language!

Edit: Damn

[–] trem@lemmy.blahaj.zone 1 points 3 weeks ago

Hmm, interesting. I always write Markdown unformatted, so where I put the asterisks in myself. So, that's a decent reality check, I guess.