CommonMarkAttributedString icon indicating copy to clipboard operation
CommonMarkAttributedString copied to clipboard

Create NSAttributedStrings from Markdown Text

Results 4 CommonMarkAttributedString issues
Sort by recently updated
recently updated
newest added

Hello, It's important to be able to customise markdown elements with needed attributes. So I would like to suggest breaking API change. See the code sample below. Does it fit...

I'm getting a crash of … ```plain Simultaneous accesses to 0x… but modification requires exclusive access. ``` … at [this line](https://github.com/mattt/CommonMarkAttributedString/blob/89ad7475eb57a777c54229cec737a007dbf5826d/Sources/CommonMarkAttributedString/NSAttributedString%2BExtensions.swift#L35) … ```swift let mutableAttributedString = try NSMutableAttributedString( data: data,...

bug

I think it'd be neat to be able to provide custom attributes when creating attributed strings. For example, a chat application might want to make headers bold without altering the...

enhancement

Hi @mattt, I'm currently [working on integrating CommonMarkAttributedString](https://github.com/niochat/nio/pull/72) into [Nio](https://github.com/niochat/nio/), a Matrix client. Since Matrix supports rich-text messages using common-mark markdown it would be great if the app could preview...

question