A Publish plugin that makes it easy to integrate the Splash Swift syntax highlighter into any Publish website.
To install it into your Publish package, add it as a dependency within your Package.swift
manifest:
let package = Package(
...
dependencies: [
...
.package(name: "SplashPublishPlugin", url: "https://github.com/johnsundell/splashpublishplugin", from: "0.1.0")
],
targets: [
.target(
...
dependencies: [
...
"SplashPublishPlugin"
]
)
]
...
)
Then import SplashPublishPlugin wherever you’d like to use it:
import SplashPublishPlugin
For more information on how to use the Swift Package Manager, check out this article, or its official documentation.
The plugin can then be used within any publishing pipeline like this:
import SplashPublishPlugin
...
try DeliciousRecipes().publish(using: [
.installPlugin(.splash(withClassPrefix: "classPrefix"))
...
])