I still need to learn how to fully take advantage of these items, but I've code the base examples working. I started with grabbing Parsedown. This allows me to use Markdown directly in my php code.
Source: Parsedown
$Parsedown = new Parsedown();
echo $Parsedown->text('Jaseowns now has _Parsedown_!');
After I got that working, I was sad that the javascript was not highlighting automagically. The quickest fix was to just find a JS library that worked well with Parsedown out of the box. Insert PrismJS!
Source: PrismJS
<head>
<link rel="stylesheet" href="/css/prism.css">
<script src="/js/prism.js"></script>
</head>
If this in-fact worked correctly, the above items should be highlighted and the source links look like...
Source: [PrismJS](https://prismjs.com/)
Bringing Jaseowns.com into the new age!