asciidoctor / asciidoctorj

:coffee: Java bindings for Asciidoctor. Asciidoctor on the JVM!
http://asciidoctor.org
Apache License 2.0
624 stars 173 forks source link

Missing `toc-title` attribute in org.asciidoctor.Attributes #1131

Closed eastack closed 1 year ago

eastack commented 1 year ago

There is no toc-title attribute in org.asciidoctor.Attributes. How should I set this attribute? Other methods using map configuration are already deprecated.

abelsromero commented 1 year ago

You can use attribute from the builder https://github.com/asciidoctor/asciidoctorj/blob/c5aa7f2b8c5a3999f2d12604dddb189f2fbf273c/asciidoctorj-api/src/main/java/org/asciidoctor/AttributesBuilder.java#L556

or https://github.com/asciidoctor/asciidoctorj/blob/c5aa7f2b8c5a3999f2d12604dddb189f2fbf273c/asciidoctorj-api/src/main/java/org/asciidoctor/Attributes.java#L592 from Attribute

eastack commented 1 year ago

Thank you so much for your help!