awesome-pipeline icon indicating copy to clipboard operation
awesome-pipeline copied to clipboard

any chance we can add some meta data per repo

Open ghost opened this issue 4 years ago • 6 comments

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?

ghost avatar May 31 '20 07:05 ghost

I have no idea about sort, but added stars shields(#135) after github repo link.

wbchn avatar Jun 24 '20 08:06 wbchn

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 avatar Jun 27 '21 19:06 alperyilmaz

@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.

wbchn avatar Jun 28 '21 05:06 wbchn

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 %%.

alperyilmaz avatar Jun 28 '21 08:06 alperyilmaz

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.

wbchn avatar Jun 28 '21 09:06 wbchn

oh, I see.. fixed it.. now it's much cleaner.. thanks for pointing it out..

alperyilmaz avatar Jun 28 '21 11:06 alperyilmaz