Jonathan.
Jonathan.

Reputation: 55594

Mark down editor for objective-c

I need to implement a markdown editor in objective-c, that various buttons can be pressed after selecting text and then the markdown is applied to the selection. So far I have easily gotten bold and italics, and more complicatedly, numbered lists, quote segments, code segments. I am guessing this will involve using regular expressions, so far I've avoided this but the code is quite ugly.

So are there any existing markdown libraries for objective-c

Upvotes: 3

Views: 1174

Answers (2)

pablasso
pablasso

Reputation: 2499

There's an Objective-C library named markdownlive, built around Discount.

Upvotes: 0

user557219
user557219

Reputation:

I’m not aware of an Objective-C library for Markdown. That said, since Objective-C is a superset of C, you could try a plain C Markdown library:

Upvotes: 4

Related Questions