Files
swift-hpa/Sources/CliDoc/Nodes/String+NodeRepresentable.swift

14 lines
187 B
Swift

extension String: NodeRepresentable {
@inlinable
public func render() -> String {
self
}
}
extension String: Node {
public var body: some NodeRepresentable {
self
}
}