-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Append descriptions to plugin links in lists of plugins #343
Comments
@eleanorkonik replied:
I then said:
|
Thoughts in implementationHere's some info on the implementation for adding descriptions to Uncategorised Plugins: It was a trivial change: diff --git a/.github/scripts/templates/category.md.jinja b/.github/scripts/templates/category.md.jinja
index ffd80c83..0815d379 100755
--- a/.github/scripts/templates/category.md.jinja
+++ b/.github/scripts/templates/category.md.jinja
@@ -14,7 +14,7 @@ publish: true
## Plugins in this category
{% for item in plugins %}
-- [[{{ item.id }}|{{ item.name }}]]
+- [[{{ item.id }}|{{ item.name }}]]: {{ item.description }}
{% endfor %}
{% if related %}
Then just run Making this add the current description to all other lists of plugins in the Hub vault will need a bit more work. |
There might be some overlap with #282 - as both involve adjusting the content of existing lists in the Hub vault. |
Ah, this would be great! It would help make it easier to put plugins into categories (to get a better overview – for me, for example) and then we could write more comparisons (I would love to do that!) in other places. Edit: I'm also in favour of option 1 for the uncategorised ones! |
I'm working on this, and have a fairly reasonable first implementation. I like the output. For speed of testing during development, I've made it so that when |
@andynu As part of this, we should probably try to remember to update the Contributing section at the end of this page, to increase the chances that the description is copied in, and not just the plugin name. |
And whilst there, we might point people to the 'Uncategorised Plugins' list, as a source of plugins needing categorisation.... |
Taken from my suggestion in this discussion in Discord:
Been thinking about ways to make categorising plugins easier, and I realised that the hub has various places where there are lists of names of plugins, and lots of plugin names don't tell you much about what the plugin does...
So I tried an experiment...
And a lot easier than having to navigate in to each plugin's page to see what it does.
Here's another option:
And why stop at just uncategorised plugins. These lists could all be more useful if the plugin description was included:
The text was updated successfully, but these errors were encountered: