Mark editor for objective-c

I need to implement a label editor in objective-c so that various buttons can be pressed after selecting text, and then markdown is applied to the selection. Until now, I easily got bold and italic, but more complex, numbered lists, quotation segments, code segments. I assume that this will be due to the use of regular expressions, so far I have avoided this, but the code is pretty ugly.

So, are there existing markup libraries for objective-c

+3
source share
2 answers

I am not aware of the Objective-C library for Markdown. However, since Objective-C is a superset of C, you can try the regular C Markdown library:

+4

Objective-C markdownlive, .

0

Source: https://habr.com/ru/post/1793292/


All Articles