module Jekyll class ProofTagBlock < Liquid::Block def render(context) text = super "Proof #{text} $\\square\\enspace$" end end end Liquid::Template.register_tag('proof', Jekyll::ProofTagBlock)