Multiline attributes in macro

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Multiline attributes in macro

abelsromero
We are using tags to reuse content from different files and we end up with really long lines of tags, which is becoming complicated to handle. For example, during changes reviews, it's hard to spot what has been added and what removed.

We'd like to do something like this:

include::partial$tables/error-codes.adoc[
  tags=
    401-token-expired;
    401-token-invalid;
    401-token-empty;
    401-document-store;
    403-document-store;
    404-document-id-not-found;
    500
]
Is there a way to do this?