How do I disable the automatic list in an article?

Hello!
Tell me how to make sure that when typing through a dash (-) or plus (+), an automatic list in the form of a circle is not added (I attach a screenshot), but that it just goes with a dash?
I have already tried all the settings that I can turn off, but this circle constantly appears if the first character in the line is (-) or (+).
file

.list-bullet:after {
    content: '\2010';
    border-radius: 0;
    width: 0;
}

.list-bullet:before {
    display: none;
}

.list-bullet {
    color: var(--text-normal);
}

.cm-formatting-list .list-bullet:after {
    display: none;
}

Credit: https://www.reddit.com/r/ObsidianMD/comments/1dvmcvb/comment/lborw72/

See also

1 Like

Thanks! Unfortunately, it seems that this is not exactly what I thought… That is, it now writes a dash instead of a dot, but can you tell me how to make sure that a new dash is not added when transferring to a new line? that is, so that it all goes just like a regular text?
I’ve already been tormented to look for a solution, to be honest, and you are the last hope (
error 2

Try disabling this setting. That may do what you are looking for.

1 Like

Thanks! This setting helped, now when transferring to a new line (-) is not added…
But I ran into a new problem… Where (-) is still inserted, for some reason these lines are shifted slightly to the right. Although I have removed all tabs in the settings, etc.

Do you know if it is possible to make the whole text on the same level, and if I write at the beginning of the line (-), so that it does not shift a little?
error 333

Obsidian is a Markdown editor. It is supposed to render hyphens as lists, because this is part of Markdown’s most basic formatting features: Basic formatting syntax - Obsidian Help

If you want to disable Markdown rendering for hyphens, you could

\- add
\- backslashes

or

```
- use a 
- code block
```
1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.