Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.37 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.37 KB

BBCodeParser

CI Status Version License Platform

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, rataj.miha@gmail.com

License

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