npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@springio/asciidoctor-extensions

v1.0.0-alpha.14

Published

Asciidoctor.js extensions that support the Spring documentation.

Downloads

8,390

Readme

Spring.io Asciidoctor Extensions

This library provides Asciidoctor extensions that support the Spring documentation. For now, these extensions are only designed for use with Asciidoctor.js. The extensions evolved out of the Spring Asciidoctor backends project.

Prerequisites

In order to use this extension, you must have Node.js 16 or higher installed on your machine. These extensions are intended to be used with Asciidoctor.js. Since this project does not declare Asciidoctor.js as a dependency to afford you flexibility, you must have Asciidoctor.js 2.2 or higher installed in your project.

Installation

Use the following command to install the @springio/asciidoctor-extensions package into your project:

$ npm i @springio/asciidoctor-extensions

You also need to register the extension in the Antora playbook. The require name(s) for each extension is listed in the documentation for that extension. Here’s an example of how to register the common extensions in the asciidoc.extensions key in the Antora playbook:

asciidoc:
  extensions:
  - '@springio/asciidoctor-extensions'

Several extensions will log a warning if a scenario is invalid. In order to see the line number of the correct file where the problem occurs in the message, you must enable Asciidoctor’s sourcemap. To do so, set the asciidoc.sourcemap key in the Antora playbook as follows:

asciidoc:
  sourcemap: true
  extensions:
  # ...

Extensions

This section documents the Asciidoctor extensions that are provided by this library.

Code Chomping

require name: @springio/asciidoctor-extensions or @springio/asciidoctor-extensions/code-chomping-extension

The code chomping extension allows specific parts of a Java, Kotlin, or Groovy source block to be removed. The extension will not run on any other source, listing, or literal blocks. This extension is mainly useful if you have externalized code that includes comments and annotations intended for the compiler’s eyes only.

When this extension is registered, it will remove parts of the code that match chomp tags, @Suppress / @SuppressWarnings annotations, and @formatter:on / @formatter:off line comments. You can also turn on chomping of the header (typically a Javadoc comment or license statement) and package declaration.

The following chomp tags (i.e., comments) are supported:

| Comment | Description | | --- | --- | | /**/ | Chomps the rest of the line and replaces it with ... | | /* @chomp:line <replacement> */ | Chomps the rest of the line and replaces it with <replacement>, which defaults to ... | | // @chomp:line | Chomps (drops) this line only | | // @chomp:file | Chomps (drops) this line to the end of the file |

Here’s an example source block that uses code chomping:

[,java]
----
public class Example {
    private final Something something;

    private final Other other;

    public Example() {
        this.something = /**/ new MockSomething();
        this.other = /* @chomp:line your thing... */new MyThing();
    }
}
----

The output of this block will appear as follows:

public class Example {
    private final Something something;

    private final Other other;

    public Example() {
      this.something = ...
      this.other = your thing...
    }
}

You can set the chomp AsciiDoc attribute to change the default settings. The attribute can be set on the document or the block. The document attribute is the default value. The attribute value may be one of the following keywords:

| Flag | Description | | --- | --- | | default | Enable the tags, formatters, and suppresswarnings operations | | all | Enable all chomping operations | | none | Disable all chomping operations | | tags | Chomp the comment tags | | formatters | Chomp any @formatter:on / @formatter:off line comments | | suppresswarnings | Chomp any @Suppress or @SuppressWarnings annotations | | headers | Chomp any file headers up to package declaration | | packages | Chomp the package declaration, or replace the name if the chomp-package-replacement attribute is set |

Package names should follow Java naming conventions (all lowercase characters). Instead of dropping the package declaration, you can replace the name. To do so, ensure the packages operation is enabled. Then, set the chomp-package-replacement to the replacement name, such as org.example. When the extension finds the package declaration, it will replace the name in the source with the replacement name you specified.

The following document is configured to update the name in the package declaration in each Java-like source file with org.example.

= My Document
:chomp-package-replacement: org.example

If this attribute is set and its value is empty, the original package declaration is preserved.

Code Folding

require name: @springio/asciidoctor-extensions or @springio/asciidoctor-extensions/code-folding-extension

The code folding extension allows non-pertinent code in a source block to be hidden on initial view. The user can click the unfold button to reveal the hidden code. The extension will not run on any other source, listing, or literal blocks. This extension is mainly useful if you have externalized code that includes boilerplate lines that detract from the focus of the snippet.

When this extension is registered, all Java imports will be automatically folded. Additional fold blocks can also be defined using fold tags. The fold tags are @fold:on and @fold:off comment lines.

Here’s an example source block that uses code folding to hide the fields on initial view:

[,java]
----
public class Example {
    // @fold:on
    private final String first;

    private final String second;
    // @fold:off

    public Example(String first, String second) {
        this.first = first;
        this.second = second;
    }
}
----

The @fold:on tag supports replacement text to show when the block is folded. Here’s an example source block that replaces the getters and setters with a comment when folded:

[,java]
----
public class Example {
    private String first;

    private String second;

    // @fold:on // getters / setters...
    public String getFirst() {
        return this.first;
    }

    public void setFirst(String first) {
        this.first = first;
    }

    public String getSecond() {
        return this.second;
    }

    public void setSecond(String second) {
        this.second = second;
    }
    // @fold:off
}
----

You can set the fold AsciiDoc attribute to change the default settings. The attribute can be used on the document or the block. The document attribute is the default value. The attribute value may be one of the following keywords:

| Flag | Description | | --- | --- | | default | Enable the imports and tags operations | | all | Enable all folding operations | | none | Disable all folding operations | | imports | Fold import statements | | tags | Fold @fold:on / @fold:off tags |

Include Code

require name: @springio/asciidoctor-extensions or @springio/asciidoctor-extensions/include-code-extension

The include code extension provides the include-code block macro. This macro generates code (i.e., source) blocks by importing auto-discovered code files in one or more languages (currently only XML, Java, Kotlin, or Groovy) from preconfigured locations. The location is defined first by an AsciiDoc attribute, then by the ID of the nearest ancestor section or document. The ID is converted to a path by removing all - characters and replacing all . characters with /. When searching, the extension appends the appropriate file extension for each configured language.

Consider the following AsciiDoc source:

[[my.example-project]]
== My Example Project

include-code::SomeCode[]

If the include-java attribute is defined, the include-code block macro will look for the Java file at the location {include-java}/my/exampleproject/SomeCode.java. It will then create a source block with the language java that contains the contents of this file.

The following languages are supported by convention based imports:

| Language | Root Directory Attribute | File Extension | | --- | --- | --- | | XML | include-xml | .xml | | Java | include-java | .java | | Kotlin | include-kotlin | .kt | | Groovy | include-groovy | .groovy |

A code block will be created for a matching file in each configured language. If more than one file is found, and the Asciidoctor Tabs extension is registered, the code blocks will automatically be enclosed in a tabs block. If Asciidoctor Tabs is not registered in this case, the source blocks will be created as siblings.

If none of the supported include-* attributes are defined, or if no code files are found for a target at the locations defined by these attributes, the extension will log a warning.

If the target path starts with ./, then the path (with - removed) of the source file with be used to compute the location of the import. The location is defined first by an AsciiDoc attribute, next by the path of the source file, and then by the ID of the nearest ancestor section or document.

Consider the following AsciiDoc source:

org/spring/index.adoc

[[my.example-project]]
== My Example Project

include-code::./SomeCode[]

If the include-java attribute is defined, the include-code block macro will look for the Java file at the location {include-java}/org/spring/my/exampleproject/SomeCode.java. It will then create a source block with the language java that contains the contents of this file.

Configuration Properties

require name: @springio/asciidoctor-extensions/configuration-properties-extension

The configuration properties extensions augments the AsciiDoc syntax to validate and display Spring configuration properties in the documentation. Those enhancements are as follows:

  • configprop inline macro
    The configprop inline macro verifies that a configuration property is valid and its deprecation status, then outputs the property name as a monospaced (i.e, code) phrase.
  • configprops block
    The configprops block is an enhanced source blocks that validates all the configuration properties listed in either the Java properties format or YAML format, then displays the properties as a source (i.e., code) block. The block can either output the input format, or, if the input format is YAML, can display tabs containing the properties assignments in both the Java properties format and the YAML format.

This extension loads the Spring configuration properties from spring-configuration-metadata.json files in the partial family for the current component version (e.g., modules/ROOT/partial/spring-boot/spring-configuration-metadata.json). It will aggregate the properties from all matching files into a single lookup table. The table is used for validating property names and querying their deprecation status. The extension assumes that these files are put into that location by another extension, such as Antora Collector. Here’s an example Gradle task that can be used with Antora Collector:

task collectConfigurationMetadataFiles(type: Copy) {
  from project.configurations.configurationProperties
  eachFile {
    it.path = it.file
      .toString()
      .replaceFirst('/build/(?:classes|resources)/java/main/', '/')
      .replaceFirst('^.*/([^/]+)/META-INF/(spring-configuration-metadata\\.json)$', '$1/$2')
  }
  into layout.buildDirectory.dir('generated-docs/modules/ROOT/partials/configuration-metadata')
}

configprop inline macro

The configprop macro is an inline macro (single colon) that can be used to reference a Spring configuration property. The macro outputs the name of the property as monospaced text. Here’s an example that references the server.port configuration property.

Use the configprop:server.port[] property to configure the server's port.

This property is defined in a Spring configuration metadata file as follows:

{
  "name": "server.port",
  "type": "java.lang.Integer",
  "description": "Server HTTP port.",
  "sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties",
  "defaultValue": 8080
}

If the property does not exist, the extension will log a warning message. If the property is deprecated, the extension will log a warning message by default. These two validations also apply to the configprops block.

If the deprecation is expected, the deprecation message can be suppressed by setting the deprecated option on the macro:

In the old days, you would use configprop:server.servlet.path[opts=deprecated] to set the path of the main dispatcher servlet.

If the deprecated option is specified, but the property is not deprecated, the extension will log a warning.

Instead of outputting the property name itself, you can configure the macro to output the environment variable that maps to the property by setting the format=envvar attribute. In the following example, the macro outputs the environment variable name SERVER_PORT instead of the property name servlet.port.

Use the configprop:server.port[format=envvar] environment variable to configure the server's port.

configprops block

The configprops block is an enhanced source block that can be used to validate configuration property names, demonstrate how properties are used, and display properties in multiple formats. To the reader, the configprops block will appear as a source block, optionally in a tabbed interface. The block has the indent=0 attribute implicitly set.

The configprops block accepts input as either Java properties (properties) or YAML (yaml). The input language is specified using the second positional parameter, just like a source block. Currently, only the yaml input format allows the properties to be displayed in both formats (which is the preferred means of display).

Here’s an example of that shows how to use the configprops block with properties in the Java properties format.

[configprops,properties]
----
spring.datasource.url=jdbc:mysql://localhost/test
spring.datasource.username=dbuser
spring.datasource.password=dbpass
----

If a property in the block is not valid or is deprecated, the extension will log a warning.

In the precending example, three property names will be validated:

  • spring.datasource.url
  • spring.datasource.username
  • spring.datasource.password

While the Java properties format may suffice for simple use cases, the YAML format is preferred. Let’s look at that same block again, this time using YAML as the source language.

[configprops,yaml]
----
spring:
  datasource:
    url: jdbc:mysql://localhost/test
    username: dbuser
    password: dbpass
----

In addition to displaying the configuration properties in YAML format, this block will also display the properties in the Java properties format. The reader will be able to switch between the two formats using a tabbed interface.

You can disable the tabbed interface, and the automatic conversion to the Java properties format, by setting the noblocks option:

[configprops%noblocks,yaml]
----
spring:
  datasource:
    url: jdbc:mysql://localhost/test
    username: dbuser
    password: dbpass
----

When the configuration properties are specified in the YAML format, the validator will not validate keys of a java.util.Map property or indices of an java.util.List property, but will still convert the data to the Java properties format. Here’s an example that contains these scenarios:

[configprops,yaml]
----
spring:
  mail:
    properties:
      "[mail.smtp.connectiontimeout]": 5000
      "[mail.smtp.timeout]": 3000
      "[mail.smtp.writetimeout]": 5000
  ldap:
    embedded:
      base-dn:
      - dc=spring,dc=io
      - dc=pivotal,dc=io
  mvc:
    contentnegotiation:
      media-types:
        markdown: text/markdown
----

In the preceding example, three property names will be validated:

  • spring.mail.properties
  • spring.ldap.embedded.base-dn
  • spring.mvc.contentnegotiation.media-type

The other keys are user-defined and thus cannot be validated.

Here’s how this configuration will be displayed in the Java properties format:

spring.mail.properties[mail.smtp.connectiontimeout]=5000
spring.mail.properties[mail.smtp.timeout]=3000
spring.mail.properties[mail.smtp.writetimeout]=5000
spring.ldap.embedded.base-dn[0]=dc=spring,dc=io
spring.ldap.embedded.base-dn[1]=dc=pivotal,dc=io
spring.mvc.contentnegotiation.media-types.markdown=text/markdown

If you want to forgo validation of property names, such as for hypothetical examples, set the novalidate option.

[configprops%novalidate,yaml]
----
hypothetical:
  property:
    name: value
----

Section IDs

require name: @springio/asciidoctor-extensions/section-ids-extension

This section validates the document ID and the IDs of its sections. It ensures that each ID uses valid characters (kebab-case by default). It also checks that the IDs of sections extend the ID of their parent section.

The following IDs are valid (using the default configuration):

  • top-level
    • top-level.nested-child
      • top-level.nested-child.grandchild

A warning is logged for each invalid ID.

The word and level separators separators can be controlled using the following two AsciiDoc attributes:

  • sectid-word-separator (default: -)
    The character that must be used to separate words in a local ID (the final segment).
  • sectid-level-separator (default: .)
    The character that must be used to separate levels in a section ID.

All IDs must be lowercase, must start with an alphabetic character, and may only contain alphanumeric characters aside from the aforementioned separators.

Javadoc

require name: @springio/asciidoctor-extensions/javadoc-extension

The javadoc extension allows you to quickly create links to javadoc sites. For example, javadoc:com.example.MyClass[] will create a link to xref:attachment$api/java/com/example/MyClass.html with the text MyClass.

Syntax

The following format can be used when declaring a javadoc link:

[<location>]<class-reference>[#<anchor>]

Only <class-reference> is mandatory, and it must be the fully qualified name of the class to link to. For example, com.example.MyClass. References to inner-classes should use $ notation instead of .. For example, com.example.MyClass$Builder.

If a <location> is specified, it must end with /.

Any <anchor> must exactly match the anchor in the corresponding javadoc page.

Locations

Unless otherwise overridden, the default javadoc location will be xref:attachment$api/java. If you want a different default, you can set the javadoc-location document attribute. For example, you can set javadoc-location to xref:api:java if you publish javadoc under a api Antora module.

📌 NOTE
document attributes can be set in your Antora playback under the attributes key.

Package Specific Locations

You can use package specific javadoc-location document attributes if you want to support multiple locations. To set a package specific location, add a javadoc-location-<package> document attribute. The <package> should be the java package name with all . characters replaced with -.

For example, the following will use different locations for com.example.core links:

= Example
:javadoc-location-com-example-core: {url-example-javadoc}

Please see javadoc:com.example.core.util.MyUtils[]
Link Specific Locations

You can override locations on a per-link basis by including the location directly in the link. The embedded link must end with a /.

For example:

= Example
:url-jdk-javadoc: https://docs.oracle.com/en/java/javase/17/docs/api

Please read javadoc:{url-jdk-javadoc}/java.base/java.io.InputStream[]

Formats and Link Text

By default, a short form of the class name is used as the link text. For example, if you link to com.example.MyClass, only MyClass is used for the link text.

If you want to change the format of the link text, you can use the format attribute. For example, javadoc:com.example.MyClass[format=full] will use com.example.MyClass as the link text.

The following formats are supported:

| Name | Description | Example | | --- | --- | --- | | short (default) | The short class name | com.example.MyClass$Builder -> MyClass.Builder | | full | The fully-qualified class name | com.example.MyClass$Builder -> com.example.MyClass.Builder | | annotation | The short class name prefixed with @ | com.example.MyAnnotation -> @MyAnnotation |

💡 TIP
You can change the default format by setting a javadoc-format document attribute. This can be done site-wide, or on a page-by-page basis.

You can also specify directly specify link text if the existing formats are not suitable:

javadoc:com.example.MyClass$Builder[See `Builder` for details].

Anchors

Anchors may be used to link to a specific part of a javadoc page. The anchor link must exactly match the link in the target page. For example, javadoc:com.example.MyClass#myMethod(java.lang.String)

When an anchor is specified, the link text will include a readable version. The example above would render the link text MyClass.myMethod(String).

UI Support

All anchors created using the javadoc macro will have a role of apiref to allow the UI to style them appropriately.

License

Use of this software is granted under the terms of the Apache License, Version 2.0 (Apache-2.0).