Skip to content

0.2.1

Compare
Choose a tag to compare
@eed3si9n eed3si9n released this 06 Sep 19:27
· 714 commits to main since this release
v0.2.1

Fixes with compatibility implications

  • paradoxTheme now defaults to Some(builtinParadoxTheme("generic")). To opt out of a theme you must set None explicitly. #19 by @eed3si9n

Fixes and enhacements

Leady McBreadcrumbs

If a documentation site is contained within an enclosing website it's very pleasant if the breadcrumbs
allows one to navigate back up.

lazy val docs = (project infile(".")).
  enablePlugins(ParadoxPlugin)
  settings(
    name := "Breadcrumbs Test",
    paradoxLeadingBreadcrumbs := List("Alphabet" -> "https://abc.xyz/", "Google" -> "https://www.google.com")
  )

#9 by @dwijnand.

Scalafiddle integration

Adds a variation of @@snip feature that works with Scalafiddle:

@@fiddle [Example.scala](./Example.scala) { #fiddle_code extraParams=theme=light&layout=v75 cssStyle=width:100%; }

#16 by @andreaTP