diff --git a/ParsedownHelper.md b/ParsedownHelper.md new file mode 100644 index 0000000..2a8e050 --- /dev/null +++ b/ParsedownHelper.md @@ -0,0 +1,16 @@ +The `ParsedownHelper` template extension gives us a new tag to use in our templates. + +``` html +{{ @variable | raw }} +``` + +This will resolve in the pre-compiled template file as + +``` php + +build($variable);?> + +``` + +Which ultimately calls +` Parsedown::instance()->text($variable); ` \ No newline at end of file