Modify Learning Path metadata

Each Learning Path contains metadata which is used to create the Learning Path pages. The metadata is used by the website so all Learning Paths have the same information and are consistent.

This section explains how to add Learning Path metadata in three files:

  1. Metadata and Tagging information in _index.md
  2. Review Questions for comprehension provided in _review.md
  3. Next Steps for readers in _next-steps.md

Metadata and tagging

The following metadata is defined in the _index.md file:

Learning Path MetadataExplanation
titleShould start with a verb (learn, build), have no adjectives (amazing, cool), and be as concise as possible (limit one sentence).
minutes_to_completeTime to perform the steps in the Learning Path (not just read it).
who_is_this_forOne sentence indicating the target audience (developers using tools or software to accomplish tasks).
learning_objectives2-5 bullet points, one sentence each, describing what a reader will learn. Should start with a verb (deploy, measure).
prerequisitesEverything needed before this Learning Path can be started. Can include online service accounts, prior knowledge, previous Learning Paths, or specific tools and software. Offers explanatory links when possible.
author_primaryThe name of the person who wrote the Learning Path in case there are questions about the material.

Look at other Learning Paths for inspiration about how to write a good title, learning objectives, and prerequisites.

Note

To specify a prerequisite Learning Path, do so with a relative path. For example:

Note the relative path of ../../docker

Author information

If you provide your name in the author_primary metadata it will be listed on the top of the Learning Path in the Author field.

Displaying your name on the content you contributed is a great way to promote your work.

If you do not want your name to be displayed leave author_primary blank.

You can share additional information about yourself by editing the file contributors.csv at the top of the repository. This file collects your company name, GitHub username, LinkedIn profile, Twitter handle, and your website. All fields are optional, but any you add to contributors.csv will appear next to your name in the Author field.

Tags

Tagging metadata is also expected to increase visibility through filtering. Some tags are closed (you must select from a pre-defined list) and some are open (enter anything). The tags are:

skilllevels (closed)

Indicates the skill level needed as a developer to complete this Learning Path.

OptionExplanation
IntroductoryRequires minimal experience in this field or previous knowledge about the tools/software involved
AdvancedRequires experience with specific topics, tools, or software to properly understand this tutorial

subjects (closed)

Specifies the primary subject the Learning Path covers. Can only be one subject per Learning Path; if it spans multiple, pick the primary one. Select from the allowed list for each category, as defined here:

Server and CloudDesktop and LaptopEmbeddedMobileMicrocontroller
CI-CDCI-CDCI-CDCI-CDCI-CD
Performance and ArchitecturePerformance and ArchitecturePerformance and ArchitecturePerformance and ArchitecturePerformance and Architecture
MLMigration to ArmMLMLML
Containers and VirtualizationContainers and VirtualizationContainers and VirtualizationGamingSecurity
StorageStorageAR-VRVirtual Hardware
DatabasesAutomotiveGraphicsRTOS
LibrariesEmbedded LinuxLibraries
Web
Networking

operatingsystems (closed)

Specifies the operating systems this Learning Path can run on. Select from this list:

OS Options
Linux
Windows
macOS
ChromeOS
iOS
Android
RTOS
Baremetal

tools_software_languages (open)

Specifies the tools, softwares, or languages this Learning Path uses. Please list out any key tools, software, or languages your Learning Path uses.

Tag TypeExamples
EnvironmentsAWS EC2, GCP
ToolchainsGCC, Arm Compiler for Embedded
IDEsArm Development Studio, VS Code
Online ToolsGitHub, Jenkins
Assortedcbuild, Docker
StacktinyML, CMSIS
LanguagePython, Java, Assembly
Librarieszlib, snappy

arm_ips (open)

Specifies the Arm IP this Learning Path involves, providing a quick link to IP information for developers interested in learning more. You can enter multiple specific or groups of IP. Note that this is not used for filtering content, but is clickable for readers to find more information about these IPs through searching automatically on developer.arm.com.

Grouping TypeWhen to useExamples
Specific IPThe Learning Path covers a specific board with one (or a few) Arm IPCortex-M4, Neoverse-N1, Mali-G57
Group of IPThe Learning Path applies to a wider class of Arm IPCortex-M, Cortex-A, Cortex-R, Neoverse, Mali

Review questions

Review questions both validate comprehension and re-enforce specific learning ideas. At least two questions should be provided; three questions is ideal. Each question is multiple choice. They are specified in the _review.md file as follows:

Review MetadataExplanation
questionA one sentence question to the reader
answersThe multiple-choice answers
correct_answerAn integer indicating what answer is correct (1 for the first listed, etc.)
explanationA short, 1-2 sentence explanation of why the question has that answer.

For a great simple example of this concept see the MongoDB Learning Path review .

Tip

The explanation is displayed whether or not the reader selects the correct answer. Avoid phrases like “Correct! This is because…” and opt for phrasing like “this is correct because…”

Next Steps

This is where you provide a specific next step for a reader, and provide further reading resources to dive deeper into the topics covered. The following metadata is defined in the _next-steps.md file:

Next Steps MetadataExplanation
next_step_guidanceA 1-3 sentence description of how the reader can generally keep learning about these topics, and a specific explanation of why the next step is being recommended.
recommended_pathLink to the next learning path being recommended (For example, this could be Learn How to Use Docker )
further_readingLinks to references related to information covered
resource > titleThe displayed title of the provided further_reading resource
resource > linkThe website link to the specific resource
resource > typeHelps the reader understand what type of resource is being suggested. Can be either: (1) Manuals for a tool / software (type: documentation). (2) Blog about related topics (type: blog). (3) General online references (type: website).
Back
Next