Markup
Markup generates attributed strings using a familiar markup syntax:
- To emphasize words or sentences, you can surround the text with *asterisks* to create bold text or _underscores_ for italic text.
- To show corrections in the text, surround the text with ~tildes~ to strike out the text.
- You can combine formatting options.
For example, the following text:
The *quick*, ~red~ brown fox jumps over a _*lazy dog*_.
will be formatted like this:
The quick, red brown fox jumps over a lazy dog.
Just to give you an idea, here is a screenshot of the sample application displaying the markup text and the resulting attributed string:
Examples
Render an attributed string
You can use MarkupRenderer
to generate an attributed string from a given markup text:
import Markup
let renderer = MarkupRenderer(baseFont: .systemFont(ofSize: 16))
let attributedText = renderer.render(text: "The *quick*, ~red~ brown fox jumps over a _*lazy dog*_.")
Access the markup syntax tree
Use MarkupParser
to generate an abstract syntax tree for a markup text:
let nodes = MarkupParser.parse(text: "The *quick*, ~red~ brown fox jumps over a _*lazy dog*_")
dump(nodes)
// Outputs:
[
.text("The "),
.strong([
.text("quick")
]),
.text(", "),
.delete([
.text("red")
]),
.text(" brown fox jumps over a "),
.emphasis([
.strong([
.text("lazy dog")
])
])
]
Performance
Both the parsing and the rendering will take linear time to complete.
This post explains how Markup internally works, in case you are curious about the implementation.
Installation
Using CocoaPods
Add pod Markup
to your Podfile
Using Carthage
Add git "gonzalezreal/Markup"
to your Cartfile
Using the Swift Package Manager
Add Package(url: "https://github.com/gonzalezreal/Markup.git", majorVersion: 1)
to your Package.swift
file.
Swift compatibility
- Version
2.1
supportsSwift 4.2
- Version
2.0
supportsSwift 4
Help & Feedback
- Open an issue if you need help, if you found a bug, or if you want to discuss a feature request.
- Open a PR if you want to make some change to
Markup
. - Contact @gonzalezreal on Twitter.