Can repositories plugin not be used within markdown template? #1194
-
Tried to use the Is the plugin not supported for the Profile readme: https://github.com/Andre601/Andre601 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You also need to tell the - {%- await embed(`stats-starred-repo`, {repositories_starred: 3}) %}
+ {%- await embed(`stats-starred-repo`, {repositories: true, repositories_starred: 3}) %}
- {%- await embed(`stats-random-repo`, {repositories_random: 3}) %}
+ {%- await embed(`stats-random-repo`, {repositories: true, repositories_random: 3}) %} Should do the trick 👍 |
Beta Was this translation helpful? Give feedback.
You also need to tell the
embed
function that you want to use therepositories
plugin by passing the flag too in its option like below:Should do the trick 👍