Skip to content

Latest commit

 

History

History

markdown-templates

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Skills Exercises Markdown Templates

A collection of templates for use in Skills exercises.

Template Collections

  • /readme/* - templates intended for updating an exercise's root readme file.
  • /step-feedback/* - templates for sharing step progress, grading pass/fail, and congratulations. Typically used for issue comments.

Template Variables

Several templates contain mustache style variables. They are intended for use with the skills/action-text-variables GitHub Action, which supports full mustache templating.

Example

hello.md

Hello {{ login }}, nice to meet you!

json input

{
  "login": "${{ github.actor }}"
}

Tip

See mustache syntax for all capabilities like iteration and if/then logic.