@@ -355,13 +355,17 @@ Documentation for _Material for MkDocs_ has a [search feature](https://squidfunk
355355
356356# # How do I add a license tag to an application page?
357357
358- The license tag is added inside a YAML front matter. The first lines in the Markdown file should be
359- the front matter. Please note the enclosing dashes. A template for the front matter is
358+ The license tag is added inside the YAML front matter. Temporarily, the license type should be placed as a
359+ list item under `tags:` _and_ as a string in `license_type:` :
360360
361361` ` ` yaml
362362---
363363tags:
364364 - <license>
365+ catalog:
366+ # ...
367+ license_type: <license>
368+ # ...
365369---
366370` ` `
367371
@@ -372,36 +376,22 @@ The application will then be included on the Applications by license page automa
372376
373377# # How do I tag an application as available under a web interface?
374378
375- As with [adding a license tag](#how-do-I-add-a-license-tag-to-an-application-page), an application
376- can be tagged as available in a particular web interface. The application will then be listed under
377- that web interface on the _Applications by availability_ page. The tags for web interfaces that an
378- application is available on are added under the `system` key in the front matter.
379+ In the YAML front matter. The following would, for example, tag the application as available on
380+ Puhti, Mahti _and_ Puhti web interface.
379381
380382` ` ` yaml
381383---
382- system:
383- - www-<system1>
384- - www-<system2>
384+ catalog:
385+ # ...
386+ available_on:
387+ - Puhti
388+ - Mahti
389+ - web_interfaces:
390+ - Puhti
391+ # ...
385392---
386393` ` `
387394
388- where `<system1>` or `<system2>` is one of the systems where a web interface is available, for
389- example (prefixed with `www-`) `mahti` or `puhti`.
390-
391- As a temporary workaround, to prevent an application getting listed under a system for merely
392- mentioning the system, edit the [skip_system.txt](scripts/skip_system.txt) file.
393-
394- ` ` ` text
395- Workaround:
396-
397- ...
398-
399- SKIP_<system1> application.md
400- SKIP_<system2> application.md
401- ` ` `
402-
403- where `<system1>` and `<system2>` are as above.
404-
405395# # How do I add footnotes?
406396
407397Usage of the footnotes feature is described
0 commit comments