You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Performed before any other templating engines like Markdown or Razor. That means any output from a shortcode in this phase will be processed by those engines. For example, if you want to include a Markdown document in another Markdown document, you'll need to evaluate the Include shortcode during the pre-rendering phase (otherwise the Markdown processor would have already been run and your included Markdown document would never get processed).
Do you have examples of the different shortcodes?
I'll like to use the
include
to create a Table of Contents, once, and use it in other posts.I created another markdown file
toc.md
and put it in another directoryinputs/includes
.Added the following to my post:
<?# Include "./../includes/posts/toc.md" /?>
But when built the site it added it as raw text not markdown.
Is there another attribute I need to set?
The text was updated successfully, but these errors were encountered: