dom8509 / logseq-to-markdown

Export Logseq to Markdown
MIT License
28 stars 3 forks source link

Multiline blocks support #13

Open ky3ow opened 2 weeks ago

ky3ow commented 2 weeks ago

In Logseq, you can press Shift-Enter to span one outline bullet into multiple lines. Also there are multiline code blocks(denoted by ```), which i use often.

(println "code")

And inside markdown list, in order for Hugo to render multiline blocks properly, the first character of all lines should align(crude simplification of CommonMark spec which Hugo uses)

- A
  - Multiline
    Block
- B

Right now only first line of block gets indented