I have my Markdown plugin installed and working fine on the site, but in a page plugin when I try to load the viewer I get an error message: "[no viewer found for format: markdown]". I am using this code:
$viewer = qa_load_viewer( $content, 'html' );
$html = '<div>' . $viewer->get_html( $content, $format, $options ) . '</div>';
Here, $content is the content field from qa_posts and $format is its corresponding format field (which is 'markdown'). Did I miss something?