Files
2025-09-23 20:22:59 -04:00

56 lines
1.4 KiB
Swift

//
// Bdo.swift
// HTMLStandard
//
// Generated on 09/23/2025.
// THIS FILE IS GENERATED. DO NOT EDIT.
//
import Foundation
/// <bdo> Text directionality formatting
public class Bdo : HTMLNode, IFlow, IPalpable, IPhrasing {
/// The text directionality of the element.
public var dir:Dir {
get { return try! Dir(expect: globalAttributes[.dir]!) }
set { globalAttributes[.dir] = newValue.rawValue }
}
public init(_ attributes:[String:String], _ parser:XMLParser? = nil) throws {
var globalAttr = GlobalAttributesBuilder()
for (key, attValue) in attributes {
if globalAttr.trySetGlobalAttribute(key, attValue) {
continue
}
throw AppError("Unexpected attribute: \(key)")
}
var allItems:[HTMLNode] = []
while let obj = try parser?.readObject(endTag: "bdo", xmlToHtmlMapper) {
allItems.append(obj)
}
super.init(globalAttr, allItems)
}
public func addChild(_ someElement:IPhrasing) {
children.append(someElement)
}
public override func renderAttributes() -> String {
var result = super.renderAttributes()
return result
}
override var nodeName: String {
return "bdo"
}
override var isVoidElement: Bool {
return false
}
}