Published on June 15, 2020
Last Revised on June 15, 2020
This is my first Markdown file rendered by Scully. Hopefully someday I'll write about the steps I took to integrate Scully, specifically how I wired together this blog portion of my site...
Below is how the prism.js syntax highlighter works.
$blogPosts = this.scully.available$.pipe(
map(routes =>
routes.filter(
route =>
route.route.startsWith('/blog/') && route.sourceFile.endsWith('.md') && route.publish
)
)
);