Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 862
Jonathan. Avatar asked May 05 '26 21:05

Jonathan.


1 Answers

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:

  • Discount
  • peg-markdown
  • libupskirt