SmolHTML
SmolHTML copied to clipboard
Tutorial is misleading
For example, tutorial:
protocol Parsable {
static func parse(context: ParsingContext) throws -> Self
}
Source code:
protocol Parsable {
static func parse(context: ParsingContext, options: ParsingOptions?) throws -> Self
}