Skip to content

Instantly share code, notes, and snippets.

@nafeu
Last active June 15, 2018 02:38
Show Gist options
  • Save nafeu/561adf64c387cfce6efba843cc23395b to your computer and use it in GitHub Desktop.
Save nafeu/561adf64c387cfce6efba843cc23395b to your computer and use it in GitHub Desktop.
Example minimal-elearning presentation
---
title: "Using Minimal eLearning with Github Gists"
author: "Nafeu Nasir"
description: "A tutorial on how to create minimal-elearning presentations with Github Gists"
date: 2018-6-10
---
# Getting Started
First create a brand [new Github Gist](https://gist.github.com/), fill in the description however you'd like, and for the filename, make sure you end with the extension `.memd`. For the document itself, start off by filling it with front-matter like so:
```
---
title: "___"
author: "___"
description: "___"
date: YYYY-MM-DD
---
```
Then for the rest of your document, use regular Markdown (`.md`) seperated by triple plus signs like so:
```
[your markdown content here]
+++
[your markdown content here]
```
The *plus signs* are used by minimal-elearning to generate "lesson slides". Since we are using **Markdown**, all of it's associated benefits are available to you.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment