blob: 1b2e2390d715393bd034b72ef3680a2a3f89f6d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// MarkdownStylingOptions.swift
// MullvadVPN
//
// Created by Jon Petersson on 2023-06-29.
// Copyright © 2023 Mullvad VPN AB. All rights reserved.
//
import UIKit
struct MarkdownStylingOptions {
var font: UIFont
var paragraphStyle: NSParagraphStyle = .default
var boldFont: UIFont {
let fontDescriptor = font.fontDescriptor.withSymbolicTraits(.traitBold) ?? font.fontDescriptor
return UIFont(descriptor: fontDescriptor, size: font.pointSize)
}
}
|