init()

in Sources/SwiftDocC/Model/Rendering/Content/RenderBlockContent.swift [125:151]


        init(_ kind: Aside.Kind) {
            switch kind {
            case .note: self = .note
            case .important: self = .important
            case .warning: self = .warning
            case .experiment: self = .experiment
            case .tip: self = .tip
            case .attention: self = .attention
            case .author: self = .author
            case .authors: self = .authors
            case .bug: self = .bug
            case .complexity: self = .complexity
            case .copyright: self = .copyright
            case .date: self = .date
            case .invariant: self = .invariant
            case .mutatingVariant: self = .mutatingVariant
            case .nonMutatingVariant: self = .nonMutatingVariant
            case .postcondition: self = .postcondition
            case .precondition: self = .precondition
            case .remark: self = .remark
            case .requires: self = .requires
            case .since: self = .since
            case .todo: self = .todo
            case .version: self = .version
            case .throws: self = .throws
            }
        }