You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.2 KiB

layout title
default Emacspeak Tutorial Resources

Emacspeak Tutorial Resources

This is a list of resources and videos associated with my emacspeak tutorials. They are grouped by language and library. Although I try my best to keep each individual video as self-sufficient as possible... sometimes it's not quite possible. Especially with complex libraries. The lack of sorting is intentional. See Luke Smith's video on why to ramble and not be sequential.

    {% assign languages = site.emacspeak_tutorials | group_by: "language" %} {% for language in languages %}
  • {{ language.name }}
      {% assign libraries = language.items | group_by: "library" %} {% for library in libraries %}
    • {{ library.name }}
        {% for tutorial in library.items %}
      • {{ tutorial.title }}
      • {% endfor %}
      {% endfor %}
    • {% endfor %}