TheMotion
get_contents( get_template_directory() . '/CHANGELOG.md' );
$themotion_changelog_lines = explode( PHP_EOL, $themotion_changelog );
foreach ( $themotion_changelog_lines as $themotion_changelog_line ) {
if ( strpos( $themotion_changelog_line,'###' ) == 0 ) {
echo '
' . substr( $themotion_changelog_line,3 ) . '
';
} else {
echo esc_html( $themotion_changelog_line ) . '
';
}
}
?>