markdown icon indicating copy to clipboard operation
markdown copied to clipboard

A Dart markdown library

Results 41 markdown issues
Sort by recently updated
recently updated
newest added

This package parses markdown strings into an AST. Is this package intended to offer a path in the reverse, to serialize markdown structure to a string? If it is, can...

this converts to html like golang's chroma,which is based off pygmentize,can this package support colors in terminal programs too?

I had totally missed that Dart RegExp supports named groups. We should use these in parsing, as it is mind-melting to try to keep the indices of nested groups in...

contributions-welcome
P3

Github recently started supporting [mathematical expressions](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/writing-mathematical-expressions). Is there any plan for this package to support these changes?

Allowing inline diagram support from comment text to markdown (and indirectly, dartdoc), would be a nice thing to have for doc writers, so they don't have to have opaque image...

type-enhancement

the following markdown is not parsed correctly by Document.parseLines. the `nodes1` should be a strong element and its children are 'aa' text and em element 'bb', but it's not. please...

Hello, I'm trying to implement reddit's [superscript syntax](https://www.reddit.com/r/YouShouldKnow/comments/1i0nwv/ysk_how_to_use_superscripts_on_reddit_basic_and/) as a custom inline syntax. Since superscript text can have other tags inside of it, I need to use the `TagSyntax` API,...

Probably the autolink extension is breaking it? Input: ``` ![alt text with http://example.org](https://placekitten.com/50/50) ``` Expected output ```html ``` Actual output: ```html ![alt text with http://example.org](https://placekitten.com/50/50) ```

I tried to implement my own font inline parser, but it seems the regex refuses to match despite it being valid in my testing. Here's my class: ```dart import 'package:markdown/markdown.dart';...

I'm currently converts to: Im currently

status-needs-info