Deeply nested lists rendered flat
See original GitHub issueFirst of all thanks for the tool. I’m in the process of migrating Evernote notes to markdown so your tool could be very helpful.
One thing I have problem with is that after doing enex-dump
my note’s nested lists are flat in markdown format. Is it a know problem or am I doing something wrong?
Thanks 🙇
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Flattening deeply nested array of objects - Stack Overflow
Just iterate over and if a children is found get the array from the children concatinated. function flat(array) { var result = [];...
Read more >JavaScript Flatten Deeply Nested Array of Objects Into Single ...
Requirement: We have a deeply nested array of objects. We want to bring all the nested objects into the array at the root...
Read more >Nested list rendering broken if line after is not empty
Outlined list rendered flat. Problem with the preview of lists when the next line is a non-list. Issues with block-referencing nested lists.
Read more >Deeply Nested Objects and Redux | Pluralsight
In very simple terms, the React rendering process is sensitive only to the immutable updates of the state. This means that any change...
Read more >Transforming flat sequences to deeply nested collections in ...
Transforming flat sequences to deeply nested collections in Clojure ... (flat-seq->deeply-nested-v1 % coll)) children) (list root))).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Maybe something like
- - second level
could be fixed with a simple regex.True! I will do it probably in that way.