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

Links and Code Blocks

You can inert links in bullet points:

More Code Block examples

  publish(path, course) {
    const basePath = '../' + path + '/' + this.folder;
    futils.initEmptyPath(basePath);
    this.resources = this.talks.concat(this.labs);
    console.log(this.title);
    this.publishTalks(basePath);
    this.publishLabs(basePath, course);
  }

This was autodetected as javascript. This one is html:

<div class="ui segment pushable">
  <div class="pusher">
    <div class="ui basic segment">
      <br>
      {% for chapter in chapters %}
      <div  class="ui tab segment lab" data-tab="{{chapter.shortTitle}}">
        {{ chapter.content }}
      </div>
     {% endfor %}
    </div>
  </div>
</div>