Releases: lightbend/paradox
Releases · lightbend/paradox
v0.4.0
- Improved scalafiddle integration
- Var substitution in markdown files doesn't work with dotted identifiers
See: https://github.com/lightbend/paradox/milestone/8?closed=1
v0.3.6
Fixes
- Paradox Theme artifact is no longer added to the Compile configuration dependencies (#225), thanks to @magro
github.base_url
now considers stable versions (#227)- Cookie values are now encoded (#220)
New Features
- Opened up
SourceDirective
trait for plugins (#219), thanks to @metasim - Absolute links to snippets now resolve from the build directory (#209)
Credits
Author | Commits | Lines added | Lines removed |
---|---|---|---|
2m | 4 | 98 | 18 |
magro | 1 | 48 | 3 |
xuwei-k | 1 | 4 | 1 |
raboof | 1 | 1 | 1 |
metasim | 1 | 1 | 1 |
0.3.5
0.3.4
New features
- Custom HTML tags in markdown #186
- CSS class names on snip directives #189
- New
paradowBrowse
command to open documentation in the browser #193 - Nesting of the block directives #188
- Links to snippet sources #168
- Outdated documentation warning #203
- Support for multiple artifacts in the dependencies block #180
- MardownSpec extracted to a new artifact:
"com.lightbend.paradox" %% "testkit" % "0.3.4"
#211
Fixed bugs
- Indent fixes in multi-snippets #201
Credits
Author | Commits | Lines added | Lines removed |
---|---|---|---|
ennru | 10 | 177 | 58 |
raboof | 9 | 88 | 27 |
2m | 7 | 2973 | 2795 |
jonas | 5 | 45 | 40 |
SethTisue | 2 | 20 | 19 |
ktoso | 1 | 9 | 0 |
0.3.2
Fixes and enhancements
- Allow site root relative base URLs in *doc & extref directives by @bantonsson
- Recognize headers within group blocks by @raboof
- Fix java URLEncoding by @andreaTP
- Point to examples of public external themes by @jonas
- Speed up
@ref
directive by pre-calculating part of mappings by @jrudolph
0.3.1
0.3.0
Fixes and enhancements
- Cross-build for sbt 0.13 and 1.0 #132 by @larsrh and #147 by @bantonsson
- Add
@@dependency
directive #142 by @jonas - Start collecting some notes on our Markdown dialect #130 by @raboof
- Fix GitHub directive to support line numbers #143 by @jonas
- Select group with query parameter #145 by @raboof
- Document another common
snip.xxx.base_dir
#148 by @raboof
sbt 1.0 and 0.13
sbt-paradox is now cross-built for sbt 1.0 and 0.13
New @@dependency
directive
Create dependency code examples for different build tools. See library dependencies feature for more details.
0.2.13
0.2.12
0.2.11
Fixes and enhancements
- Tab-group switching for snippets and other fragments. See Groups for more details. #107/#11/#63 by @gsechaud and @raboof
- Auto-expanding navigation #114 by @pvlugter
- Custom directives to be added to sbt setting #115 by @pvlugter
- Fixes extref docs #82 by @xuwei-k
- Fixes AppVeyor failing tests with
-Dfile.encoding=UTF8
#112 by @eed3si9n - Removes global cache for templates to allow changes #108 by @pvlugter
Custom directives
Custom directives can be added more easily:
paradoxDirectives += { context: Writer.Context =>
new SignatureDirective(context.location.tree.label)
}