Skip to content

Commit

Permalink
feature: do not process the website pages with jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
etorreborre committed Oct 11, 2024
1 parent 3383b3a commit 2d5b064
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions guide/src/test/resources/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
exclude:
- "*.*"
- "*/"
2 changes: 1 addition & 1 deletion guide/src/test/scala/org/specs2/Website.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Website(env: Env) extends Specification with Specs2Variables with Specs2Ta

def createWebsite = {
val fs = env.fileSystem
val pages = List("index", "quickstart", "learn", "project", "nav").map(_ + ".html").map(resource)
val pages = List("index", "quickstart", "learn", "project", "nav").map(_ + ".html").map(resource) :+ resource("_config.yml")
val directories = List("css", "fonts", "images", "javascript").map(resourceDir)
val vars = variables(env)
val siteOutputDir = outputDir / "website" / versionDirName
Expand Down

0 comments on commit 2d5b064

Please sign in to comment.