11 lines
243 B
Swift
11 lines
243 B
Swift
import Ink
|
|
|
|
protocol MarkdownProcessor {
|
|
|
|
static var modifier: Modifier.Target { get }
|
|
|
|
init(content: Content, results: PageGenerationResults, language: ContentLanguage)
|
|
|
|
func process(html: String, markdown: Substring) -> String
|
|
}
|