BBCodeParser 0.1.2

BBCodeParser 0.1.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2015

Maintained by Miha Rataj.



Usage

BBCodeParser is open source objective C library for parsing BBCode (Bulletin Board Code).

To use this library in your project, copy files in BBCodeParser folder into your project. Then, include "BBCodeParser.h" file wherever you want to parse your code.

Usage example:

NSString *code = @""; // Your BB code here ...
BBCodeParser *parser = [[BBCodeParser alloc] initWithString:code];
for (BBElement *element in parser.elements)
{
// ...
}

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

BBCodeParser is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "BBCodeParser"

Author

Miha Rataj, [email protected]

License

BBCodeParser is available under the MIT license. See the LICENSE file for more info.