[Updated 2023-02-10] Migration complete

Wild stuff. If you remove yourself from a conversation, do your messages leave with you, such that the other participants no longer see them? Or do they remain?

They would remain.

So, if it’s just to reduce clutter, archival or self-removal can be used.

If it’s something that you no longer want the other user to see, then deletion and/or editing of your PM posts can be performed.

I think too many visual cues become overwhelming and paradoxically make it more difficult to draw attention to things that warrant it. Think of highlighting the majority of a text on a page vs only relevant selections.

Case in point: the bookmark icon generally seems good to me, except that it gets obscured by similar rectangular shapes and colors at the front of many thread titles.

If possible, moving the icon to the end of the thread could help it stand out more, and maybe giving the icon a slightly different color if that’s not enough.

blf_bookmarks

I’m open for anything that lets the bookmarked threads stand out more as they do right now because at the moment they don’t, if you scroll over the list of threads and are not looking for them you simply won’t see them.

Since these are threads that are really important to me I want to notice them right away.

Hi there @Valynor and @phouton , I think I might have found a decent compromise between both extremes, could you please check out your bookmarked topics in the Latest topics list again?

2 Thanks

Perfect on the dark BLF theme.

1 Thank

bookmarked topics look good in “latest” with either blf light or blf dark color schemes—clearly visible without being distracting.

for folks who don’t want to miss updates to a bookmarked topic: you can also add tracking or watching, and new posts will appear in “unread.”

image

image

Looks good now!

1 Thank

Deleting other people’s copies of things is a huge change from email, and from the previous forum’s behavior. I’d prefer if it didn’t work that way, but it sounds like it’s pretty deeply coded into Discourse. So as a way to mitigate the impact, I’d really appreciate if the email notifications included the entire message.

How about a bright flaming “BM” next to the topic?

flaming-bm

This uses the heatmap colors, so it should update the colors according to the current theme.

1 Thank

I know that BM stands for bookmark, but it also stands for bowel movement. :nauseated_face: :grin:

1 Thank

Yeah, i now know its means bookmark since i read @ToyKeeper 's post but others would not.

That said the new red bookmark and bolding does pop out well.

I still think it should ideally say [Bookmarked post in thread] to remove ambiguity.

I don’t recommend standing for bowel movement.

A flaming BM removes more than ambiguity!

3 Thanks

:+1:

Fire also gives off lumens. Double win! :smiley:
:fire:

You know being BLF we could get even more creative, perhaps a flashlight logo could be used to represent bookmarks

1 Thank

It’s probably been mentioned several times but the post editor is really sparse. No tool button for strikethrough, underline text, font size, font color, etc.

is two tildes front and back
aaaa bbbb cccc
It is markdown it is worth learning it more and more editors use it.

Yea, definitely not as convenient as the old forum’s editor(s).

I need to reformat some Old-Lumens contest related threads a bit. There’s some HTML in my future, it would seem.

Yeah, it’s definitely worth learning the basics of HTML and/or Markdown, since they’re so widely used and the most important parts are pretty easy.

With HTML, formatting is done with tags, which is just a word inside of <>'s. One tag to begin a formatted area, one tag to end it, and the end has an extra slash inside.

Markdown is just a subset of HTML, with more convenient syntax which looks more natural when read raw without being interpreted or rendered.

Here are some of the things they can do…

ExampleHTMLMarkdown
bold text <b>bold text</b> **bold**
italic text <i>italic text</i> *italic*
strike-through <strike>strike-through</strike> ~~strike-through~~
nested <strike><b><i>nested</i></b></strike> ~~***nested***~~
code span <code>code span</code> `code span`

Top-Level Heading

<h1>Top-Level Heading</h1> # Top-Level Heading
6th-Level Heading
<h6>6th-Level Heading</h6> ###### 6th-Level Heading
Link <a href="http://example.com/">Link</a> [Link](http://example.com)
pepper icon <img alt="pepper icon" src="http://toykeeper.net/torches/other/pepper-icon.png" /> ![pepper icon](http://toykeeper.net/torches/other/pepper-icon.png)
big text <big>big text</big> [not in Discourse]
small text <small>small text</small> [not in Discourse]
basesuperscriptsubscript base<sup>superscript</sup><sub>subscript</sub> [not in Discourse]

<hr /> ---
quote
<blockquote>quote</blockquote> > quote
  • a
  • b
  • c
<ul>
<li>a</li>
<li>b</li>
<li>c</li>
</ul>
- a
- b
- c
  1. a
  2. b
  3. c
<ol>
<li>a</li>
<li>b</li>
<li>c</li>
</ol>
1. a
1. b
1. c
abc
123
<table>
<thead>
<tr><th>a</th><th>b</th><th>c</th></tr>
</thead>
<tbody>
<tr><td>1</td><td>2</td><td>3</td></tr>
</tbody>
</table>
| a | b | c |
| - | - | - |
| 1 | 2 | 3 |

As a general rule, HTML can do more but Markdown is easier to type. HTML is the native language being used, while Markdown is basically “syntactic sugar” to make HTML features a bit more convenient.

As for changing the color, I don’t think Discourse allows that without add-ons. Probably because setting colors manually usually means half the users will have a harder time reading it, like how dark-mode users complained when sb set a background color for bookmarked topics.

5 Thanks

Thanks a lot for that table @ToyKeeper .

Speaking of tables, Discourse does support them in Markdown (technically “Github Flavored Markdown [GFM]”):

| Left-aligned | Center-aligned | Right-aligned |
| :--- | :---: | ---: |
| left aligned | center | right |
| left aligned | center | right |

… produces:

Left-aligned Center-aligned Right-aligned
left center right
left center right

I do have some other options to make the post editor expose more Markdown formatting stuff. I just need to make sure that the chosen option is fairly future-proof, and I haven’t had time to fully research and test it yet.

3 Thanks