Skip to content
This repository was archived by the owner on Sep 1, 2020. It is now read-only.

Commit 3454221

Browse files
fixes-issue-121
1 parent d6f436e commit 3454221

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,6 @@
5959
/project/project/target/
6060
/project/project/project/target/
6161
/build-sbt/
62+
63+
# Microsite auto-sync Readme file
64+
/src/main/tut/index.md

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
layout: home
3-
---
4-
51
# Typelevel Scala
62

73
## What is this repository?

build.sbt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import microsites._
2+
13
name := "Scala"
24
version := "1.0"
35
scalaVersion := "2.11.8"
@@ -9,7 +11,12 @@ micrositeHomepage := "http://typelevel.org/scala"
911
micrositeGithubOwner := "typelevel"
1012
micrositeGithubRepo := "scala"
1113
micrositeBaseUrl := "scala"
12-
micrositeExtraMdFiles := Map(file("README.md") -> "index.md")
14+
micrositeExtraMdFiles := Map(
15+
file("README.md") -> ExtraMdFileConfig(
16+
"index.md",
17+
"home"
18+
)
19+
)
1320
micrositeHighlightTheme := "atom-one-light"
1421
micrositePalette := Map(
1522
"brand-primary" -> "#FC4053",

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.fortysevendeg" % "sbt-microsites" % "0.2.4")
1+
addSbtPlugin("com.fortysevendeg" % "sbt-microsites" % "0.4.0")

0 commit comments

Comments
 (0)