awesome-pipeline
awesome-pipeline copied to clipboard
any chance we can add some meta data per repo
I wish I could sort by "number of issues" "stars", "watch" etc. Is there a way to do add that meta data automatically per repo?
I have no idea about sort, but added stars shields(#135) after github repo link.
I guess #135 was not merged to master. In the meantime, II did a PR #152 which has badges for language, stars and last activity date.. hope it is merged..
@alperyilmaz hope so.
I look into the code, reference the document color=<COLOR>
, there is an extra #(%23)
in awk:
?labelColor=abcdef | Set background of the left part (hex, rgb, rgba, hsl, hsla and css named colors supported). The legacy name "colorA" is also supported.
Thanks for checking the code. That extra percent sign is due to awk's printf
function. If you intend to print actual percent sign, you need to use %%
.
Sorry for the ambiguous reply, my mean is, after awk command, color=%%23456eb0
will become to color=%23456eb0
in README_meta.md
, no need extra #(%23)
before the color code reference the document, just using color=456eb0
.
oh, I see.. fixed it.. now it's much cleaner.. thanks for pointing it out..