Declare type - Fluid Topics - Latest

Manage Editorial Types in Fluid Topics

Category
Technical Notes
Audience
public
Version
Latest

Fluid Topics considers publications to be a book by default, no matter the publishing format.

It is also possible to explicitly define the editorial type. For example:

  • In DITA content, in a standard map, declare the ft:editorialType as an othermeta in the topicmeta element:

    <topicmeta>
        <othermeta name="ft:editorialType" content="article"/>
    </topicmeta>
    
  • In Markdown content, declare the ft:editorialType in the toc.yml file:

    toc:
        - filepath: "topic.md"
    metadata:
        - key: "ft:originId"
            value: "example"
        - key: "ft:title"
            value: "Example article"
        - key: "ft:editorialType"
            value: "article"