Shapely
get_contents( get_template_directory().'/CHANGELOG.txt' );
$shapely_changelog_lines = explode(PHP_EOL, $shapely_changelog);
foreach($shapely_changelog_lines as $shapely_changelog_line){
if(substr( $shapely_changelog_line, 0, 3 ) === "###"){
echo '
'.substr($shapely_changelog_line,3).'
';
} else {
echo $shapely_changelog_line,'
';
}
}
?>