variables-in-markdown
variables-in-markdown copied to clipboard
[Enhancement] Extended template capability
I'm just wondering if that makes sense. Possibility to create a template of some functional piece of Markdown. Example below
title: New Issue
labels: bug, enhancement
---
<!--#
thumbnail = [<img src="$1" width="$2"/>]($1)
IMAGE1 = ./static/iamge1.png
$-->
A thumbnail:
{{ thumbnail(IMAGE1, 250) }}
Generated markdown:
[<img src="./static/iamge1.png" width="250"/>](./static/iamge1.png)