2024-12-14 16:31:40 +01:00

10 lines
214 B
Swift

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