Another blog iteration

I’ve gone through a couple of iterations as far as blog design goes (Jekyll -> Pelican -> Hugo), but this one’s a little different. Since I’m all in on Emacs (well, Spacemacs) I figured I might as well do the blog in Org mode as well. Some googling led to the thorough ox-hugo package.

Key bindings: ~SPC a o c~ becomes SPC a o c

Javascript:

'use strict'
let normal_str = 'foo';
let template_Str = `here: ${normal_str}`;
console.log(template_Str);
for (let letter of template_Str) {
  console.log(letter);
}
here: foo
h
e
r
e
:

f
o
o
undefined

And Python:

import json
a = {x:x*x for x in range(6)}
print(a)
{"0": 0, "1": 1, "2": 4, "3": 9, "4": 16, "5": 25}