WordStyle
public struct WordStyle : Codable, Equatable
Microsoft Word styles to convert into a specified HTML head level.
-
HTML head level that content matching this style is tagged with.
Declaration
Swift
public var level: Int? -
Array of word style names to convert.
Declaration
Swift
public var names: [String]? -
Initialize a
WordStylewith member variables.Declaration
Swift
public init( level: Int? = nil, names: [String]? = nil )Parameters
levelHTML head level that content matching this style is tagged with.
namesArray of word style names to convert.
Return Value
An initialized
WordStyle.
View on GitHub
WordStyle Structure Reference