Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement nested list items #202

Open
purrutia opened this issue Nov 30, 2022 · 1 comment
Open

Implement nested list items #202

purrutia opened this issue Nov 30, 2022 · 1 comment

Comments

@purrutia
Copy link

Is your feature request related to a problem? Please describe.
On a presentation I would like to add a contents slide. In markdown, I usually use nested lists on a markdown file with tabs, for example:

  1. Item 1
  2. Item 2
  3. Sub Item 1
  4. Sub Item 2
  5. Item 3

But if I do that on slides the result is:

  1. Item1
  2. Item 2
  3. Sub Item 1
  4. Sub Item 2
  5. Item 3

Describe the solution you'd like
I would like to have nested lists like:

  1. Item 1
  2. Item 2
  3. Sub Item 1
  4. Sub Item 2
  5. Item 3

Describe alternatives you've considered
Use lookatme instead (works there)

@smangels
Copy link

smangels commented Jan 10, 2023

Like that? According to Markdown standard indentation with 4 spaces are required to achieve that. I've tested it in slides version

1. First item
2. Second item
   2.1 First sub item
   2.2 Second sub item
3. Third Item

Skärmbild från 2023-01-10 10-23-27
Which gave =>
Skärmbild från 2023-01-10 10-24-05

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants