- August 12, 2025
- Mins Read
Display Markdown using pure SwiftUI components. Taking advantages of ViewBuilder
to make custom appearances for Text
and View
.
import Parma
struct ContentView: View {
var markdown = “I’m **Strong**.”
var body: some View {
Parma(markdown)
}
}
For more examples, please refer to demo app.
Swift Package Manager is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies on all platforms.
Adding Parma
as a dependency by using Xcode’s GUI, the package url is https://github.com/dasautoooo/Parma
.
CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Parma
into your Xcode project using CocoaPods, specify it in your Podfile
:
pod ‘Parma’
To customize Text
styles and View
s, create a new render which conform to protocol ParmaRenderable
, and only reimplement those that fit your purposes. Finally, assign the customized render as a new render when create Parma
view.
import Parma
struct ContentView: View {
var markdown = “I’m **Strong**.”
var body: some View {
Parma(markdown, render: MyRender())
}
}
struct MyRender: ParmaRenderable {
…
}
There’s a DemoApp that modified some of these delegate methods below for everyone to take as a reference.
/// Define the heading text style.
/// – Parameters:
/// – level: The level of heading.
/// – textView: The textView generated from captured heading string.
func heading(level: HeadingLevel?, textView: Text) -> Text
/// Define the paragraph text style.
/// – Parameter text: The text string captured from paragraph.
func paragraph(text: String) -> Text
/// Define the text style for plain text. Do NOT recommend to alter this if there’s no special purpose.
/// – Parameter text: The text string captured from markdown.
func plainText(_ text: String) -> Text
/// Define the strong text style.
/// – Parameter textView: The textView generated from captured strong string.
func strong(textView: Text) -> Text
/// Define the emphasis text style.
/// – Parameter textView: The textView generated from captured emphasis string.
func emphasis(textView: Text) -> Text
/// Define the link text style.
/// – Parameters:
/// – textView: The textView generated from captured link string.
/// – destination: The destination of the link.
func link(textView: Text, destination: String?) -> Text
/// Define the code text style.
/// – Parameter text: The text string captured from code.
func code(_ text: String) -> Text
/// Define the style of heading view.
/// – Parameters:
/// – level: The level of heading.
/// – view: The view contains heading text.
func headingBlock(level: HeadingLevel?, view: AnyView) -> AnyView
/// Define the style of paragraph view.
/// – Parameter view: The view contains view(s) which belong(s) to this paragraph.
func paragraphBlock(view: AnyView) -> AnyView
/// Define the style of list item.
/// – Parameter attributes: Attributes of the list containing the item. Those must be considered for proper item rendering.
/// – Parameter index: Normalized index of the list item. For exemple, the index of the third item of a one level list would be `[2]` and the second item of a sublist appearing fourth in it’s parent list would be `[3, 1]`.
/// – Parameter view: The view contains view(s) which belong(s) to this item.
func listItem(attributes: ListAttributes, index: [Int], view: AnyView) -> AnyView
/// Define the style of image view.
/// – Parameter urlString: The url string for this image view.
/// – Parameter altTextView: The view contains alt text.
func imageView(with urlString: String, altTextView: AnyView?) -> AnyView
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...