Parsing markdown files with .md file extension

Hi,
is it possible to parse a ontent file w/ .md file extension instead of .txt?

neither
echo markdown($page->content())
nor
echo $page->content()->markdown()
is working.

any help?

You can set the extension in your config.php

c::set('content.file.extension','md');

You can’t mix both, though.

many thanks, solved my issue