How to apply this template repo?

  • This project keeps the Antora config (antora-playbook.yml) and the content in the same repo. This is considered a bad idea. To fix this your antora-playbook.yml should look something like this.

    A real-world antora-playbook.yml example
    # ...
    
    content:
      sources:
        - url: https://github.com/my-company/my-docs-foo
          start_path: docs
        - url: https://github.com/my-company/my-docs-bar
          start_path: docs
        - url: https://github.com/my-company/my-docs-null
          start_path: docs
          branches: [main, release]
    
    # ...