Previously I mentioned a source code example showing how to create a complete note taking app that accepts markdown input.
Here’s an open source library from Uncod.in allowing you to render rich text on iOS devices created using markdown.
An example on the homepage shows the following markup code:
##Smaller header
###Even smaller header
Paragraphs are obviously supported along with all the fancy text styling you could want.
There is *italic*, **bold** and ***bold italic***. Even links are supported, visit the
github page for Bypass [here](https://github.com/Uncodin/bypass).
* Nested List
* One
* Two
* Three
* One
* One
* Two
* Three
## Code Block Support
const char* str;
str = env->GetStringUTFChars(markdown, NULL);
Creating the following result:
You can find the Bypass repository on Github here and you can find the home page here.
You’ll need to install the Boost open source library to get Bypass running.
The library uses libsoldout to parse the Markdown.
A nice library for rendering markdown.
- Example: Source Code For A Complete iOS Note Taking App That Accepts Markdown Text
- Top iOS Development Resources For Week Ended February 10th, 2013
- Tutorial: Fancy Text Effects With Core Text
- Awesome Ogre3D Graphics Engine On The iPhone
- Open Source Library Renders Flash(SWF) Graphics And Animation In Objective-C Apps
Original article: Open Source iOS Library For Rendering Markdown Text
©2013 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.