Skip to content

BBCode (BulletinBoard code) parser for Objective-C.

License

Notifications You must be signed in to change notification settings

kmaschke85/BBCodeParser

 
 

Repository files navigation

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.

About

BBCode (BulletinBoard code) parser for Objective-C.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 94.1%
  • Ruby 5.9%