$('div.section .absatz').each(function() {
      var $pg = $(this), content = $pg.html().replace(/\[(.*?)\]/g, '').split(' ');
      content = content.splice(0, 40).join(' ') + '...';
      $pg.html( content );
    });

