Skip to content

Releases: M2mobi/Marky-Mark

Optional minimum height rule for paragraph's

29 Mar 15:03
Compare
Choose a tag to compare
9.1.3

Upped podspec version to 9.1.3

Allow add converter hook on MarkdownTextview

29 Mar 12:28
8d94beb
Compare
Choose a tag to compare
9.1.2

Expose converter hook on MarkdownTextView to allow modifying generate…

Allow adding rules to MarkdownTextView

28 Mar 09:41
3dcccc3
Compare
Choose a tag to compare
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

25 Jan 14:36
6857662
Compare
Choose a tag to compare

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

22 Nov 20:26
Compare
Choose a tag to compare

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

26 Oct 09:04
Compare
Choose a tag to compare
8.0.0

Upped podspec to version 8.0.0

Added public accessors for more customizations

18 Jun 10:13
Compare
Choose a tag to compare
7.2.2

Merge branch 'more_public_accessors'

Remove public CanConfigureViews

11 Jun 13:57
11d0fce
Compare
Choose a tag to compare

Removed protocol that was not needed to be public and was also causing conflicts in some cases.

Letterspacing support

11 Jun 13:45
efb7abd
Compare
Choose a tag to compare
  • Support letterspacing
  • Fix bug in textAlignment and line-height

MarkdownAttributedLabel

29 May 11:40
c6047bf
Compare
Choose a tag to compare

Implement MarkdownAttributedLabel that supports *italic* **bold**, ~~strikethrough~~ and [Links](https//www.link.com). Can also be used to have labels with custom line-height.