We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982a6dd commit 4481d94Copy full SHA for 4481d94
src/api-wrappers/Markdown.swift
@@ -22,7 +22,8 @@ class Markdown {
22
.underlineStyle: NSUnderlineStyle.single.rawValue
23
]
24
private static let baseAttributes: [NSAttributedString.Key: Any] = [
25
- .font: NSFont.systemFont(ofSize: 13)
+ .font: NSFont.systemFont(ofSize: 13),
26
+ .foregroundColor: NSColor.labelColor,
27
28
private static let linkRegex = try! NSRegularExpression(pattern: "\\[(.*?)\\]\\((.*?)\\)")
29
private static let boldRegex = try! NSRegularExpression(pattern: "\\*\\*(.*?)\\*\\*")
0 commit comments