Releases: M2mobi/Marky-Mark
Optional minimum height rule for paragraph's
9.1.3 Upped podspec version to 9.1.3
Allow add converter hook on MarkdownTextview
9.1.2 Expose converter hook on MarkdownTextView to allow modifying generate…
Allow adding rules to MarkdownTextView
Allow adding Rule's to MarkdownTextView (#88) * Allow adding Rule's to MarkdownTextView * Upped version to 9.1.1
Add https scheme to images URL's when no scheme is specified
When 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.
Extension support and customise open url behavior
Customise 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)
Swift 4.2 support and minor improvements
8.0.0 Upped podspec to version 8.0.0
Added public accessors for more customizations
7.2.2 Merge branch 'more_public_accessors'
Remove public CanConfigureViews
Removed protocol that was not needed to be public and was also causing conflicts in some cases.
Letterspacing support
- Support letterspacing
- Fix bug in textAlignment and line-height
MarkdownAttributedLabel
Implement MarkdownAttributedLabel that supports *italic*
**bold**
, ~~strikethrough~~
and [Links](https//www.link.com)
. Can also be used to have labels with custom line-height.