Testing Code block
-
This is a line item with a nested codeblock without the syntax specified.
This code block and the following line items render correctly. -
This
<li>is works as it should.But this nested code block renders as it should, but nested under the nested `<li>`. -
As does this one.
Testing
extension Bundle {
static var appVersion: String {
Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "0.0.0"
}
static var buildNumber: String {
Bundle.main.infoDictionary?["CFBundleVersion"] as? String ?? "0"
}
}
Testing
Testing
extension Bundle {
static var appVersion: String {
Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "0.0.0"
}
static var buildNumber: String {
Bundle.main.infoDictionary?["CFBundleVersion"] as? String ?? "0"
}
}
An
swift