DEV Community

Samandar Ravshanov
Samandar Ravshanov

Posted on

📦JSON array to Markdown converter

from functorflow import f

json_arr = [
    { 'h1': 'JSON To Markdown' }
  , { 'blockquote': 'A JSON to Markdown converter.' }
  , { 'h2': 'Features' }
]

result = f('json-md', json_arr)

print(result)
Enter fullscreen mode Exit fullscreen mode

Stop wasting time installing and configuring Python libraries. Use them right away. 📦FunctorFlow instantly auto-install and auto-config them for you.

Top comments (0)