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
I need to be able to hook into the preview of the contents, and interpolate values before the Markdown is interpreted.
For example, if the contents looks something like this:
This is my little document, and {{variable}}
should be replaced with the contents of `variable`
Then I want the value of {{variable}} to be interpolated to <span class=variable-value>theValue</span> before the Markdown processing begins.
I'd like to request the ability to specify [preRender]="myFilter" to have my function called on the value of the markdown text prior to passing it to the markdown renderer.
The text was updated successfully, but these errors were encountered:
I need to be able to hook into the preview of the contents, and interpolate values before the Markdown is interpreted.
For example, if the contents looks something like this:
Then I want the value of
{{variable}}
to be interpolated to<span class=variable-value>theValue</span>
before the Markdown processing begins.I'd like to request the ability to specify
[preRender]="myFilter"
to have my function called on the value of the markdown text prior to passing it to the markdown renderer.The text was updated successfully, but these errors were encountered: