Text before list

Hello,

I am very sorry if this has been asked before or if this is obvious, I am completely new to Mark Down writing and I just started with Obsidian. And English is not my primary language.

What I’m trying to do

I hope somebody will be able to help me, I can’t seem to be able to achieve the following resultt:

I am trying to display a list with the first element on the same line as the title of the list, and the list starting from that point.

Things I have tried

Name * Item 1
		* Item 2

text format list same; searched on google with no result

That is not something easily achievable using only markdown. Some trickery could possible done related to either tables and lists within tables, or possibly some hefty CSS, but the common way to look at this is simply to have the items under the name.

You could indent the items under the names at the first level:

- Name 1
  - item 1
  - item 2
  - item 3
- Name 2
  - item 2.1
  - item 2.2
  - item 2.3

And so on, this is a logical structure used in a similar case that you describe.

Thank you Holroy, for taking the time to reply.

I indeed thought about making this in a table as it would allow easier formating than crafting a CSS file, I will pursue and go that direction :slight_smile: