petkrein
petkrein
The Xcode (8.3.3) syntax conversion is not able to fix a line in "CubicCurveAlgorithm.swift": **Line 123:** `for var i=count-2; i>=0; i -= 1 {` You have to replace it manually...
An **swift 3** syntax upgrade for your nice Algorithm would be desireable ;)
``` extension String { func convertHtml() -> AttributedString { guard let data = data(using: .utf8) else { return AttributedString() } if let attributedString = try? AttributedString(data: data, options: [.documentType: AttributedString.DocumentType.html,...