New Feature: Easy Abbreviation


Posted on: 25 May 2021

Thanks to the great tutorial developed by first time contributor AvatarErik Schill and edited by AvatarSimon Bray, we noticed that they defined a number of abbreviations and re-used those throughout their tutorial.

As the GTN is intended to be easy for contributors and easy for learners, we wanted to make use of the <abbr> tag which allows you to define commonly re-used terms in your HTML. However this is a bit clumsy to write every time, so we’ve implemented a tag and some metadata which permits easily defining and referencing abbreviations throughout your text.

In your tutorial metadata you can add an abbreviations section like:

---
title: My awesome tutorial
...
abbreviations:
  API: Application Programming Interface
  JSON: JavaScript Object Notation
---

And in your text you can use braces to refer to the term

code-in Input: Markdown

The `/jobs` {API} will return {JSON}. When we call the {API} we'll get back this result {JSON}.

code-out Output

The /jobs Application Programming Interface (API) will return JavaScript Object Notation (JSON). When we call the API we’ll get back this result JSON.

These will even generate an automatic Glossary at the end. Check out the use of this new feature in the BioBlend Dev Tutorial!

View Material
GTN logo with a multi-coloured star and the words Galaxy Training Network

Recent News

See all news

New Feature: my.galaxy.training

20 April 2023   new feature gtn

The GTN has set up a very simple “redirection” service based on my.home-assistant.io which Helena discovered after reading some Home Assistant documentation and saw a really neat link which led to her own internal home assistant.

New Feature: Persistent URLs (PURLs) / Shortlinks

19 April 2023   new feature gtn

The GTN has added persistent URL identifiers for our tutorials, slides, and FAQs. Using the gxy.io service, we have reserved GTN namespace for our persistent URLs. These work similarly to DOIs in that they will always point to a specific training material.

New Feature: GTN Rdoc

19 April 2023   new feature gtn

The internal functions of the GTN have, in the past, not been very well documented. Now we have started the process of fully documenting the functions and modules available to GTN developers.