kgar / ts-markdown

An extensible TypeScript markdown generator that takes JSON and creates a markdown document
https://kgar.github.io/ts-markdown/
MIT License
9 stars 4 forks source link

Rich Text / Inline Entries should support array content #38

Open kgar opened 2 years ago

kgar commented 2 years ago

Given this ts-markdown code:

italic(
  [
    bold('Bold/Italic Label:'), 
    ' Some italic text.'
  ]
)

The expected markdown should be:

***Bold/Italic Label:** Some italic text.*

Rendered: Bold/Italic Label: Some italic text.

Currently, it's rendering:

**