Swiftpack.co - gonzalezreal/Markup as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by gonzalezreal.
gonzalezreal/Markup 2.3.0
Lightweight markup text formatting in Swift
⭐️ 95
🕓 4 years ago
iOS macOS watchOS tvOS
.package(url: "https://github.com/gonzalezreal/Markup.git", from: "2.3.0")

Markup

Swift 5.1 Platforms Swift Package Manager Carthage Compatible CocoaPods Twitter: @gonzalezreal

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:

Screenshot

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 the Swift Package Manager

Add Markup as a dependency to your Package.swift file. For more information, see the Swift Package Manager documentation.

.package(url: "https://github.com/gonzalezreal/Markup", from: "2.3.0")

Using Carthage

Add github "gonzalezreal/Markup" to your Cartfile

Using CocoaPods

Add pod Markup to your Podfile

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.

GitHub

link
Stars: 95
Last commit: 4 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Markup 2.3.0
4 years ago

Add proper support for Swift Package Manager and Xcode 11 / Swift 5.1

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics