10 lines
214 B
Swift
10 lines
214 B
Swift
|
|
protocol CommandProcessor {
|
|
|
|
var commandType: ShorthandMarkdownKey { get }
|
|
|
|
init(content: Content, results: PageGenerationResults)
|
|
|
|
func process(_ arguments: [String], markdown: Substring) -> String
|
|
}
|