cmark-gfm-swift icon indicating copy to clipboard operation
cmark-gfm-swift copied to clipboard

An extension of GitHub's cmark fork with a Swift AST wrapper.

Results 4 cmark-gfm-swift issues
Sort by recently updated
recently updated
newest added

This test will fail. ``` func testMarkdownCheckbox_withChecked_withMultibyte() { let markdown = """ - [x] テスト - [x] テスト2 """ let node = Node(markdown: markdown)! XCTAssertEqual(node.elements.count, 1) guard case .list(let items,...

bug

According to [spec](https://github.github.com/gfm/#example-498). There is bracket syntax for links which contain whitespaces. However, cmark-gfm-swift does not handled it correctly. input: ```[link]()``` cmark-gfm's output: ```link``` cmark-gfm-swift's output: ```[link](</my uri>)```

Hi, it seems that cmark-gfm supports footnotes and there is already an extension for that. I think cmark-gfm-swift needs to support it also. If time allows, I'm going to implement...

I was unable to use cmark-gfm-swift without some extra effort. In its current state, if you use normal Carthage methodologies to include this framework (add to Linked Framework and Libraries,...