Introduce new Markdown shortcuts, revisit old blog posts

This does a number of things:
- Introduces new shortcodes for figures and tables, allowing them
  to be embedded natively.
- Fixes padding on Youtube videos
- Adjusts old blog posts, fixing dead links, and updating/unifying
  syntax.
This commit is contained in:
James
2017-09-08 22:01:11 +10:00
parent 6f842b5632
commit be92533eb4
20 changed files with 508 additions and 208 deletions

View File

@ -150,6 +150,7 @@ gulp.task('final:serve', function() {
gulp.watch('src/js/**/*', ['assets:js']);
gulp.watch('src/scss/**/*', ['assets:scss']);
gulp.watch('site/**/*.html', ['hugo']);
gulp.watch('site/**/*.md', ['hugo']);
gulp.watch('build/**/*').on('change', fileChange);
});