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`Strikethroughis 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}
pod 'MGMushParser'
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];