schultek / jaspr

Modern web framework for building websites in Dart. Supports SPAs, SSR and SSG.
https://jasprpad.schultek.de
MIT License
1.22k stars 73 forks source link

feat: markdown support #292

Open MarkOSullivan94 opened 2 weeks ago

MarkOSullivan94 commented 2 weeks ago

Description

It would be great if we could have support for Markdown content where we could have markdown documents in our projects and automatically convert them into Jaspr components

There is already a package to convert Markdown to HTML called markdown which could be used to convert markdown to HTML and then convert to Jaspr components

Ideally it would be nice if we could have a Component similar to this

Markdown(
  markdown: markdown
  h1: 'text-3xl font-bold',
  h2: 'text-2xl font-bold',
  a: 'text-sm', 
  ... 
)
mjablecnik commented 2 weeks ago

Hello, did you try jaspr_markdown?