MarkdownView alternatives and similar libraries
Based on the "Text" category.
Alternatively, view MarkdownView alternatives based on common mentions on social networks and blogs.
-
PhoneNumberKit
A Swift framework for parsing, formatting and validating international phone numbers. Inspired by Google's libphonenumber. -
SwiftRichString
👩🎨 Elegant Attributed String composition in Swift sauce -
TwitterTextEditor
A standalone, flexible API that provides a full-featured rich text editor for iOS applications. -
RichEditorView
RichEditorView is a simple, modular, drop-in UIView subclass for Rich Text Editing. -
TextAttributes
An easier way to compose attributed strings -
SwiftString
A comprehensive, lightweight string extension for Swift -
Atributika
Convert text with HTML tags, links, hashtags, mentions into NSAttributedString. Make them clickable with UILabel drop-in replacement. -
Notepad
[iOS] A fully themeable markdown editor with live syntax highlighting. -
MarkdownKit
A simple and customizable Markdown Parser for Swift -
Mustard
🌭 Mustard is a Swift library for tokenizing strings when splitting by whitespace doesn't cut it. -
SwiftVerbalExpressions
Swift Port of VerbalExpressions -
PrediKit
An NSPredicate DSL for iOS, OSX, tvOS, & watchOS. Inspired by SnapKit and lovingly written in Swift. -
AttributedTextView
Easiest way to create an attributed UITextView (with support for multiple links and from html) -
Regex by crossroadlabs
Regular expressions for swift -
OysterKit
OysterKit is a framework that provides a native Swift scanning, lexical analysis, and parsing capabilities. In addition it provides a language that can be used to rapidly define the rules used by OysterKit called STLR -
PySwiftyRegex
Easily deal with Regex in Swift in a Pythonic way -
Tagging
A TextView that provides easy to use tagging feature for Mention or Hashtag -
PredicateFlow
Write amazing, strong-typed and easy-to-read NSPredicate. -
Regex by brynbellomy
Regex class for Swift. Wraps NSRegularExpression. -
SmarkDown
A Pure Swift implementation of the markdown mark-up language -
OEMentions
An easy way to add mentions to uitextview like Facebook and Instagram -
Veneer
A simple library for building attributed strings, for a more civilized age.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MarkdownView or a related project?
README
MarkdownView
MarkdownView is a WKWebView based UI element, and internally use markdown-it, highlight-js.
How to use
UIViewController
import MarkdownView
let md = MarkdownView()
md.load(markdown: "# Hello World!")
SwiftUI
import SwiftUI
import MarkdownView
struct SampleUI: View {
var body: some View {
ScrollView {
MarkdownUI(body: markdown)
.onTouchLink { link in
print(link)
return false
}
.onRendered { height in
print(height)
}
}
}
private var markdown: String {
let path = Bundle.main.path(forResource: "sample", ofType: "md")!
let url = URL(fileURLWithPath: path)
return try! String(contentsOf: url, encoding: String.Encoding.utf8)
}
}
Options
md.isScrollEnabled = false
// called when rendering finished
md.onRendered = { [weak self] height in
self?.mdViewHeight.constant = height
self?.view.setNeedsLayout()
}
// called when user touch link
md.onTouchLink = { [weak self] request in
guard let url = request.url else { return false }
if url.scheme == "file" {
return false
} else if url.scheme == "https" {
let safari = SFSafariViewController(url: url)
self?.navigationController?.pushViewController(safari, animated: true)
return false
} else {
return false
}
}
Experimental Features
This is not stable :bow:
Custom CSS Styling
Please check Example/ViewController/CustomCss.swift.
Plugins
Please check Example/ViewController/Plugins.swift. Each plugin should be self-contained, with no external dependent plugins.
Here is a sample project that builds markdown-it-new-katex
as a compatible library.
Requirements
Target | Version |
---|---|
iOS | => 13.0 |
Swift | => 5.2 |
Installation
MarkdownView is available through Swift Package Manager or CocoaPods or Carthage.
Swift Package Manager
dependencies: [
.package(url: "https://github.com/keitaoouchi/MarkdownView.git", from: "1.7.1")
]
Alternatively, you can add the package directly via Xcode.
CocoaPods
pod "MarkdownView"
Carthage
github "keitaoouchi/MarkdownView"
for detail, please follow the Carthage Instruction
Author
keita.oouchi, [email protected]
License
bootstrap is licensed under MIT license.
highlight.js is licensed under BSD-3-Clause license.
markdown-it is licensed under MIT license.
MarkdownView is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the MarkdownView README section above
are relevant to that project's source code only.