MGMushParser 1.3.0

MGMushParser 1.3.0

TestsTested
LangLanguage Obj-CObjective C
License BSD-2-Clause
ReleasedLast Release Sep 2018

Maintained by Matt Greenfield, James Vanas.



  • By
  • Matt Greenfield

MGMushParser

Create an NSAttributedString from an NSString with lightweight Mush markup.

  • Bold is achieved with **double asterisks**
  • Italics are achieved with //double slashes//
  • Underlining is achieved with __double underscores__
  • Monospacing is achieved with `single backticks`
  • Strikethrough is achieved with ~double tildes~
  • Coloured text is achieved with {#123456|the coloured text}
  • Set text background colour with {bg#123456|the text}
  • Adjust kerning with {k4.5|the more widely spaced text}
  • Change font with {font:HelveticaNeue,12pt|text in a different font}

CocoaPods Setup

pod 'MGMushParser'

Example

NSString *mush = @"this string has **bold**, //italics//, and {#ff0000|red text}";

NSAttributedString *result = [MGMushParser attributedStringFromMush:mush
        font:[UIFont fontWithName:@"Helvetica" size:14] color:UIColor.blackColor];