$(function() {
  var converter = new Showdown.converter();
  $.get( 'updates/information.txt', function( data) {
    $('#information').html( converter.makeHtml( data));
  });
});

