Course Info

Reference Course

A short description of the course. This description will be available when the information icon in the top left selected.

This can be any markdown document:

  • with the usual
  • markdown facilities

Can include Headings

And even tables …

Head 1 Head 2
cell 1 cell 2
cell 3 cell 4

Tables, Lines and Images

Tables can look like this:

Option Description
data path to data files to supply the data that will be passed into templates.
engine engine to be used for processing templates. Handlebars is the default.
ext extension to be used for dest files.

Right aligned columns

Option Description
data path to data files to supply the data that will be passed into templates.
engine engine to be used for processing templates. Handlebars is the default.
ext extension to be used for dest files.

A horizontal rules above and below


Some more images:

A few sentences on the purpose of the lab. Avoid bullet points here for formatting reasons. And if you’d like to use syntax highlighting, include the language:

if (isAwesome){
  return true
}
  • Dashes work just as well
  • And if you have sub points, put two spaces before the dash or star:
    • Like this
    • And this
let flatLos = flattenNestedLosArrays(los);
let result: string[] = [];
flatLos.forEach((obj) => {

If you’d like to quote someone, use the > character before the line: Coffee. The finest organic suspension ever devised… I beat the Borg with it.

testing ticked fence

Some more code :

const donationSchema = new Schema({
  amount: Number,
  method: String,
  lat: String,
  lng: String,
  donor: {
    type: Schema.Types.ObjectId,
    ref: "User",
  },
  candidate: {
    type: Schema.Types.ObjectId,
    ref: "Candidate",
  },
});