w3c / publishingcg

Repository of the Publishing Community Group
https://www.w3.org/community/publishingcg/
Other
19 stars 8 forks source link

Altss tags 1.2 #17

Closed murata2makoto closed 3 years ago

murata2makoto commented 3 years ago

This is not yet final, but remaining works should be done at this w3c repository.

iherman commented 3 years ago

@murata2makoto, you were asking on the call how to add the previous version into the header. The problem is that you used respec statements that respec only processes for "official" (ie, TR) publishing workflows. But here is a way to add your own links into the document:

    //   previousPublishDate: "2017-01-25",
    //   previousMaturity: "Member-SUBM",
    //   prevRecShortname: "altss-tags",
    //   prevRecURI: "https://www.w3.org/Submission/altss-tags/",
     otherLinks: [
         {
            key: "Latest Published Version:",
            data: [
               {
                  value: "https://www.w3.org/Submission/altss-tags/",
                  href: "https://www.w3.org/Submission/altss-tags/"
               }
            ]
         }
     ],

That seems to work. See also https://respec.org/docs/#otherLinks

murata2makoto commented 3 years ago

@iherman Thank you!