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

Nested lists in description not supported #53

Closed
andyrooger opened this issue May 18, 2020 · 3 comments · Fixed by #58
Closed

Nested lists in description not supported #53

andyrooger opened this issue May 18, 2020 · 3 comments · Fixed by #58

Comments

@andyrooger
Copy link
Contributor

Nested lists don't seem to be supported when writing MD in the spec description.

Repro

info.description:

- item 1
- item 2
  - item 2.1
  - item 2.2
- item 2

Result:

* item 1
* item 2
* item 2.1
* item 2.2

This becomes a flat list, and after the first nested list ends the rest of the list is ignored.

Code

listInsert = v.ordered ? 'ol' : 'ul';
- this code doesn't seem to ever allow for nested lists.

@andyrooger
Copy link
Contributor Author

It also does not allow multiline bullets, and seems to add bullets to any text following a list from what I can tell

@mrin9
Copy link
Owner

mrin9 commented May 21, 2020

markdown support in PDF is rudimentary, It do not support tables, complex alignments etc too.

However keeping this open now.
a PR will help me a lot here, otherwise I will take a shot at it to support at least the nested list

unable to commit to any timeline on it

@andyrooger
Copy link
Contributor Author

#58 Seemed a nice way to tackle list nesting, tables and anything else in one go

@mrin9 mrin9 closed this as completed in #58 Jun 12, 2020
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

Successfully merging a pull request may close this issue.

2 participants