Packages

p

laika

rewrite

package rewrite

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class ReferenceResolver(config: Config) extends Product with Serializable

    A resolver for context references in templates or markup documents.

  2. case class TemplateContext(templateSuffix: String, finalFormat: String) extends Product with Serializable
  3. trait TemplateRewriter extends AnyRef
  4. case class Version(displayValue: String, pathSegment: String, fallbackLink: String = "index.html", label: Option[String] = None) extends Product with Serializable

    Configuration for a single version of the documentation.

    Configuration for a single version of the documentation.

    displayValue

    the description of the version to use in any UI (e.g. version dropdowns)

    pathSegment

    the string to use as a path segments in URLs pointing to this version

    fallbackLink

    the link target to use when switching to this version from a page that does not exist in this version

    label

    an optional label that will be used in the UI (e.g. Dev or Stable)

  5. case class VersionScannerConfig(rootDirectory: String, exclude: Seq[Path] = Nil) extends Product with Serializable

    Optional configuration for scanning existing versions that had been generated by a different tool.

    Optional configuration for scanning existing versions that had been generated by a different tool. This setting is optional and serves two purposes:

    - If older versions of the documentation had been generated by different tools, Laika can use this configuration for indexing the available paths for "smart linking", which is a feature of the Helium version switcher drop down. The result of the scanning operation will be used to populate the file /laika/versionInfo.json in the output directory.

    - If you are using the preview server (either the laikaPreview task in the sbt plugin, or the laika.preview.ServerBuilder from the API) and you want to also test the version switcher drop down menu, then Laika needs to know where older versions are located so that it can serve them, too.

    The specified root directory is expected to match the structure of versioned documentation as rendered by Laika. This means that the root directory is expected to have immediate sub-directories with names that correspond to the pathSegment property of the configuration for that version.

    rootDirectory

    file system path that represents the root of existing versions.

    exclude

    paths to be skipped when scanning the output directory for existing versions (e.g. for API docs), interpreted from the root directory of each version.

  6. case class Versions(currentVersion: Version, olderVersions: Seq[Version], newerVersions: Seq[Version] = Nil, renderUnversioned: Boolean = true, scannerConfig: Option[VersionScannerConfig] = None) extends Product with Serializable

    Global configuration for versioned documentation.

    Global configuration for versioned documentation.

    The order in the Seq properties will be used for any list views in the UI (e.g. for the version chooser dropdown).

    currentVersion

    the version that the sources of a transformation produce

    olderVersions

    list of older versions that have previously been rendered (may be empty)

    newerVersions

    list of newer versions that have previously been rendered (may be empty)

    renderUnversioned

    indicates whether unversioned documents should be rendered (setting this to false may be useful when re-rendering older versions)

    scannerConfig

    optional configuration for scanning and indexing existing versions, used by the Helium version switcher dropdown and by the preview server.

Value Members

  1. object DefaultTemplatePath

    Provides the paths for default templates for all formats.

  2. object ReferenceResolver extends Serializable

    Companion for constructing ReferenceResolvers for a particular target Document.

  3. object TemplateContext extends Serializable
  4. object TemplateRewriter extends TemplateRewriter
  5. object Version extends Serializable
  6. object VersionScannerConfig extends Serializable
  7. object Versions extends Serializable

Ungrouped