mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-26 14:47:11 +08:00
* milestones refactored with styled text * reference refactored * refactor commit references * fix styled text bug * request event refactored * refactor titles * warm caches for bg-gen models * delete old text cell * move shortlinks into MMMarkdown * almost there * build green * running and trimming whitespaces * styled text working * fix tests * tests passing
18 lines
382 B
Swift
18 lines
382 B
Swift
//
|
|
// UIViewController+StyledTextViewCellDelegate.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 3/18/18.
|
|
// Copyright © 2018 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIViewController: MarkdownStyledTextViewDelegate {
|
|
|
|
func didTap(cell: MarkdownStyledTextView, attribute: DetectedMarkdownAttribute) {
|
|
handle(attribute: attribute)
|
|
}
|
|
|
|
}
|