ScullyContentComponent

Overview

The scully-content component render the processed markdown result (static HTML).

Usage

<!-- This is where Scully will inject the static HTML -->
<scully-content></scully-content>

NOTE: The scully-content component does not work inside an *ngIf directive.

Configuration

localLinksOnly: boolean | '' - enable scoping of router link upgrade behavior to blog content instead of the whole document. Default is false.

<!-- Enable router link upgrade scoping to the blog content instead of whole page -->
<scully-content localLinksOnly></scully-content>
<!-- or -->
<scully-content [localLinksOnly]="true"></scully-content>