Process post content as markdown

This commit is contained in:
Christoph Hagen
2025-02-03 12:14:07 +01:00
parent a29e6229c1
commit d41c54d174
8 changed files with 194 additions and 46 deletions

View File

@@ -0,0 +1,18 @@
protocol ItemLinkResults {
func externalLink(to url: String)
func missing(page: String, source: String)
func linked(to page: Page)
func missing(tag: String, source: String)
func linked(to tag: Tag)
func missing(file: String, source: String)
func require(file: FileResource)
}