@patabugen … I was able to do the same… using a custom function…
functions.php
function create_post_links() {
global $post;
global $mwm_aal;
$content= $post->post_content;
$mwm_aal->find_content_links( $content );
return $mwm_aal->output_content_links();
}
add_action( 'init', 'create_post_links', 1, 0 );
Call it before your sidebar…
<?php create_post_links(); ?>