From d926f871d36e0fed14418a5faf837436e4b8e499 Mon Sep 17 00:00:00 2001 From: Gerard Date: Mon, 27 Jul 2020 09:29:56 +1000 Subject: [PATCH] Update README.md For some reason -> .installPlugin(.splash(withClassPrefix: "classPrefix")) was not working and colouring the code properly though if you use -> ,plugins: [ .splash(withClassPrefix: "") ] Splash colours work. --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcaf7c4..cfabaa3 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,11 @@ The plugin can then be used within any publishing pipeline like this: import SplashPublishPlugin ... try DeliciousRecipes().publish(using: [ - .installPlugin(.splash(withClassPrefix: "classPrefix")) + ... -]) +],plugins: [ +.splash(withClassPrefix: "") +] + +) ```