CHGenerator/Sources/Generator/Generators/ShorthandMarkdownKey.swift

30 lines
552 B
Swift
Raw Normal View History

2022-09-18 17:49:50 +02:00
import Foundation
enum ShorthandMarkdownKey: String {
/**
A variable number of download buttons for file downloads
*/
case downloadButtons = "download"
/**
A large button to an external page.
*/
case externalLink = "external"
/**
Additional HTML code include verbatim into the page.
*/
case includedHtml = "html"
/**
A box with a heading and a text description
*/
case box = "box"
2022-09-25 17:19:07 +02:00
/**
A pretty link to another page on the site.
*/
case pageLink = "page"
2022-09-18 17:49:50 +02:00
}