Rich tagging

Changelog-Changed: No more inline npubs when tagging users
Closes: #691
This commit is contained in:
Swift
2023-02-24 13:28:47 -05:00
committed by William Casarin
parent 810b3e1fa5
commit 436d20dfbd
5 changed files with 91 additions and 17 deletions

View File

@@ -8,6 +8,6 @@
import Foundation
class Drafts: ObservableObject {
@Published var post: String = ""
@Published var replies: [NostrEvent: String] = [:]
@Published var post: NSMutableAttributedString = NSMutableAttributedString(string: "")
@Published var replies: [NostrEvent: NSMutableAttributedString] = [:]
}