Instance Methodscinfu.swiftsoup 2.8.7SwiftSoup
parseInput(_:_:)
Parser.swift:32func parseInput(_ html: [UInt8], _ baseUri: [UInt8]) throws -> Document
func parseInput(_ html: [UInt8], _ baseUri: [UInt8]) throws -> Document
s9SwiftSoup6ParserC10parseInputyAA8DocumentCSays5UInt8VG_AItKF
What are these?30LCY
import SwiftSoup
class Parser
@frozen struct UInt8
An 8-bit unsigned integer value type.
class Document
static func htmlParser() -> Parser
static func parse(_ html: String, _ baseUri: String) throws -> Document
static func parse(_ html: [UInt8], _ baseUri: [UInt8]) throws -> Document
static func parseBodyFragment(_ bodyHtml: String, _ baseUri: String) throws -> Document
static func parseBodyFragmentRelaxed(_ bodyHtml: String, _ baseUri: String) throws -> Document
static func parseFragment(_ fragmentHtml: String, _ context: Element?, _ baseUri: [UInt8]) throws -> Array<Node>
static func parseFragment(_ fragmentHtml: [UInt8], _ context: Element?, _ baseUri: [UInt8]) throws -> Array<Node>
static func parseXmlFragment(_ fragmentXml: String, _ baseUri: String) throws -> Array<Node>
static func parseXmlFragment(_ fragmentXml: [UInt8], _ baseUri: [UInt8]) throws -> Array<Node>
static func unescapeEntities(_ string: String, _ inAttribute: Bool) throws -> String
static func unescapeEntities(_ string: [UInt8], _ inAttribute: Bool) throws -> [UInt8]
static func xmlParser() -> Parser
func getErrors() -> ParseErrorList
func getTreeBuilder() -> TreeBuilder
func isTrackErrors() -> Bool
func parseInput(_ html: String, _ baseUri: String) throws -> Document
@discardableResult func setTrackErrors(_ maxErrors: Int) -> Parser
@discardableResult func setTreeBuilder(_ treeBuilder: TreeBuilder) -> Parser
func settings() -> ParseSettings
@discardableResult func settings(_ settings: ParseSettings) -> Parser