Changelog History
Page 1
-
v10.1.0 Changes
October 12, 2020โ Added feature on MarkdownTextView to add custom LayoutBlockBuilders.
i.e.
markdownTextView.addViewLayoutBlockBuilder(MyCustomLayoutBlockBuilder()) markdownTextView.addAttributedStringLayoutBlockBuilder(MyCustomLayoutBlockBuilder())
-
v10.0.0 Changes
February 05, 2020Resolves
๐ฅ Breaking changes
- In order for URL handling to keep working (in some cases),
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool
has to be implemented inAppDelegate
Notes
- ๐ Since this release is only beneficial for SPM users, there's currently no CocoaPods version of this code (yet).
- In order for URL handling to keep working (in some cases),
-
v9.2.1 Changes
September 20, 2019Resolves #92
-
v9.2.0 Changes
July 25, 2019๐ Changed access of MarkdownTextView from public to open to allow subclassing
-
v9.1.3
March 29, 2019 -
v9.1.2
March 29, 2019 -
v9.1.1
March 28, 2019 -
v9.1.0 Changes
January 25, 2019When images are added with an url like:
//www.mywebsite.com/myimage.jpg
it will automatically be changed to:
https://www.mywebsite.com/myimage.jpg
๐ This is implemented for users who sync markdown from a CMS which may use implicit url protocols that are supported on websites.
-
v9.0.0 Changes
November 22, 2018Customise url opening by providing an instance of the URLOpener protocol and provide it to MarkdownTextView or MarkdownToViewConverterConfiguration.
Example:
markDownTextView?.urlOpener = MyCustomerURLOpener()
๐ Support markdown links in extensions by providing a different kind of url opener:
markDownTextView?.urlOpener = ExtensionContextURLOpener(extensionContext: self.extensionContext)
-
v8.0.0
October 26, 2018