Tabbed snippets

Library dependencies

Example of the @@dependency directive:

sbt
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.0.10"
Maven
<dependency>
  <groupId>com.typesafe.akka</groupId>
  <artifactId>akka-http_2.12</artifactId>
  <version>10.0.10</version>
</dependency>
Gradle
dependencies {
  compile group: 'com.typesafe.akka', name: 'akka-http_2.12', version: '10.0.10'
}

Snippet inclusion

Multiple snippets included from files:

Favicon
Compile / paradoxMaterialTheme ~= {
  _.withFavicon("assets/images/favicon.png")
}
Repository
Compile / paradoxMaterialTheme ~= {
  _.withRepository(uri("https://github.com/jonas/paradox-material-theme"))
}
Copyright notice
Compile / paradoxMaterialTheme ~= {
  _.withCopyright("""
    Based on <a href="https://github.com/squidfunk/mkdocs-material">MkDocs Material</a>
    by <a href="https://github.com/squidfunk">Martin Donath</a>
  """)
}
Font
Compile / paradoxMaterialTheme ~= {
  _.withFont("Ubuntu", "Ubuntu Mono")
}