Skip to content
  1. Nov 12, 2014
    • Aaron O'Leary's avatar
      pandoc filter to convert blockquotes to divs · 6affd9a9
      Aaron O'Leary authored
      This filter converts all blockquote-with-attributes to
      div-with-attributes.
      
      A blockquote-with-attributes is defined as a blockquote that has a
      header with attributes defined on it as it's first element, e.g.
      
          > # valid blockquote {.class}
          > text
      
      This example would be converted into this markdown:
      
          <div class='class' id=id>
          # valid blockquote
          text
          </div>
      
      And the equivalent html.
      
      The class must be one of the allowed classes defined in the filter (i.e.
      one of 'callout', 'objectives' or 'challenge').
      6affd9a9
  2. Nov 11, 2014
    • Greg Wilson's avatar
      Converting `motivation.md` to use slides template. · 5c15f8cf
      Greg Wilson authored
      Also modifed the Makefile to use the slides template for this file
      instead of the generic template.
      
      Note that we do not need a Markdown extension for deck.js because
      Pandoc is doing Markdown-to-HTML conversion for us.
      5c15f8cf
  3. Nov 10, 2014
  4. Nov 09, 2014
    • Greg Wilson's avatar
      Bringing in description of lesson structure · f870b063
      Greg Wilson authored
      f870b063
    • Greg Wilson's avatar
      Rationalizing tools. · 2b92504e
      Greg Wilson authored
      1. Moving all commands into a Makefile (because we're handling file dependencies, and that's the right tool for it).
      2. Ignoring the .html files produced in the root directory for now.
      3. Switching to a single layout modeled on that used for workshop websites - will need to update this.
      2b92504e
    • Greg Wilson's avatar
      Reorganizing material to put page source in sub-directory: · da5fc640
      Greg Wilson authored
      * Add `.nojekyll` to stop GitHub trying to compile.
      * Get rid of Jekyll `_config.yml`.
      * Create placeholder `css` and `img` directories.
      * Create `pages` directory with source for web pages.
      * Move all Markdown files into `pages`.
      * Move `tools` into `pages` (because that's where people will mostly work).
      * Move `_includes` and `_layouts` into `pages` (because that's where we'll compile).
      da5fc640