File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Sources/MarkdownKit/AttributedString Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 0.2.1 (2019-12-28)
3
+ ## 0.2.2 (2020-01-26)
4
+ - Fixed bug in AttributedStringGenerator.swift
5
+ - Migrated project to Xcode 11.3.1
4
6
7
+ ## 0.2.1 (2019-12-28)
5
8
- Simplified extension/usage of NSAttributedString generator
6
9
- Migrated project to Xcode 11.3
7
10
8
11
## 0.2 (2019-10-19)
9
-
10
12
- Implemented support for backslash escaping
11
13
- Added support for using link reference definitions; not fully CommonMark-compliant yet
12
14
- Migrated project to Xcode 11.1
Original file line number Diff line number Diff line change @@ -260,7 +260,8 @@ open class AttributedStringGenerator {
260
260
261
261
open var codeStyle : String {
262
262
return " font-size: \( self . codeFontSize) px; " +
263
- " font-family: \( self . codeFontFamily) ; "
263
+ " font-family: \( self . codeFontFamily) ; " +
264
+ " color: \( self . codeFontColor) ; "
264
265
}
265
266
266
267
open var preCodeStyle : String {
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >BNDL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.2.1 </string >
18
+ <string >0.2.2 </string >
19
19
<key >CFBundleVersion </key >
20
20
<string >1 </string >
21
21
</dict >
You can’t perform that action at this time.
0 commit comments