CSPのnonceはどのように埋め込まれるのか︖
HTMLテンプレート内に埋め込まれた特殊⽂字列をNative側(Swift)で置換する
12
https://github.com/brave/brave-ios/pull/4209/files#diff-eaeef15a290e9e5e9bcaae784f18d874f8c932dfa3de416a5820eccd6b2d8cfbR54
%READER-CREDITS%
document.getElementById("reader-title").textContent = "%READER-TITLE%";
%READER-CONTENT%
HTMLテンプレート
.replacingOccurrences(of: "%READER-TITLE%", with: readabilityResult.title)
.replacingOccurrences(of: "%READER-CREDITS%", with: readabilityResult.credits)
.replacingOccurrences(of: "%READER-CONTENT%", with: readabilityResult.content)
.replacingOccurrences(of: "%READER-TITLE-NONCE%", with: titleNonce)
テンプレート内の特殊⽂字列を置換するSwiftコード