Compare commits

..

No commits in common. "395f5965bcf928f9f7b5d3cc25d59520f77c21fb" and "d396a800f63d8c793bbdb9c078f96412ac895395" have entirely different histories.

2 changed files with 0 additions and 51 deletions

View File

@ -26,7 +26,6 @@ public struct AttributedStringConverter<Callbacks: AttributedStringCallbacks> {
private var actionStack: [ElementAction] = []
private var styleStack: [Style] = []
private var previouslyFinishedBlockElement = false
// The current run of text w/o styles changing
private var currentRun: String = ""
@ -145,7 +144,6 @@ public struct AttributedStringConverter<Callbacks: AttributedStringCallbacks> {
private mutating func startBlockElement() {
if str.length != 0 || !currentRun.isEmpty {
previouslyFinishedBlockElement = false
currentRun.append("\n\n")
}
}
@ -172,19 +170,15 @@ public struct AttributedStringConverter<Callbacks: AttributedStringCallbacks> {
case "pre":
finishRun()
removeLastStyle(.monospace)
finishBlockElement()
case "blockquote":
finishRun()
removeLastStyle(.blockquote)
finishBlockElement()
case "ol":
finishRun()
removeLastStyle(.orderedList)
finishBlockElement()
case "ul":
finishRun()
removeLastStyle(.unorderedList)
finishBlockElement()
case "li":
finishRun()
default:
@ -192,13 +186,6 @@ public struct AttributedStringConverter<Callbacks: AttributedStringCallbacks> {
}
}
private mutating func finishBlockElement() {
if str.length != 0 {
previouslyFinishedBlockElement = true
// currentRun.append("\n\n")
}
}
// Finds the last currently-open style of the given type.
// We can't just use the last one because we need to handle mis-nested tags.
private mutating func removeLastStyle(_ type: Style.StyleType) {
@ -247,11 +234,6 @@ public struct AttributedStringConverter<Callbacks: AttributedStringCallbacks> {
} else if case .replace(let replacement) = actionStack.first(where: \.isReplace) {
currentRun = replacement
}
if previouslyFinishedBlockElement {
previouslyFinishedBlockElement = false
currentRun.insert(contentsOf: "\n\n", at: currentRun.startIndex)
}
var attributes = [NSAttributedString.Key: Any]()
var currentFontTraits: FontTrait = []

View File

@ -12,9 +12,6 @@ final class AttributedStringConverterTests: XCTestCase {
#if os(iOS)
private let font = UIFont.systemFont(ofSize: 13)
private lazy var italicFont = UIFont(descriptor: font.fontDescriptor.withSymbolicTraits([.traitItalic])!, size: 13)
private lazy var boldFont = UIFont(descriptor: font.fontDescriptor.withSymbolicTraits([.traitBold])!, size: 13)
private lazy var boldItalicFont = UIFont(descriptor: font.fontDescriptor.withSymbolicTraits([.traitBold, .traitItalic])!, size: 13)
private let monospaceFont = UIFont.monospacedSystemFont(ofSize: 13, weight: .regular)
#elseif os(macOS)
private let font = NSFont.systemFont(ofSize: 13)
@ -170,36 +167,6 @@ final class AttributedStringConverterTests: XCTestCase {
]))
}
func testTextAfterBlockquote() {
let result = NSMutableAttributedString()
result.append(NSAttributedString(string: "wee", attributes: [
.font: italicFont,
.paragraphStyle: blockquoteParagraphStyle,
]))
result.append(NSAttributedString(string: "\n\nafter", attributes: [
.font: font,
.paragraphStyle: NSParagraphStyle.default,
]))
XCTAssertEqual(convert("<blockquote>wee</blockquote>after"), result)
}
func testMultipleBlockElements() {
let result = NSMutableAttributedString()
result.append(NSAttributedString(string: "a", attributes: [
.font: italicFont,
.paragraphStyle: blockquoteParagraphStyle,
]))
result.append(NSAttributedString(string: "\n\n", attributes: [
.font: font,
.paragraphStyle: NSParagraphStyle.default,
]))
result.append(NSAttributedString(string: "b", attributes: [
.font: italicFont,
.paragraphStyle: blockquoteParagraphStyle,
]))
XCTAssertEqual(convert("<blockquote>a</blockquote><blockquote>b</blockquote>"), result)
}
func testSelfClosing() {
XCTAssertEqual(convert("<b />asdf"), NSAttributedString(string: "asdf", attributes: [
.font: font,