{"id":20095952,"url":"https://github.com/pirafrank/jekyll-listme","last_synced_at":"2026-02-14T14:04:54.721Z","repository":{"id":228890295,"uuid":"775179333","full_name":"pirafrank/jekyll-listme","owner":"pirafrank","description":"A Jekyll command plugin to list tags and categories for your Jekyll website. Output as plain text, JSON, or YAML.","archived":false,"fork":false,"pushed_at":"2025-02-24T12:19:58.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-05T18:58:55.388Z","etag":null,"topics":["categories","jekyll","jekyll-plugin","jekyll-plugins","json","plugins","tags","yaml"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/jekyll-listme","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pirafrank.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-03-20T22:47:56.000Z","updated_at":"2025-02-24T12:20:03.000Z","dependencies_parsed_at":"2024-03-21T00:42:20.773Z","dependency_job_id":"38103507-39ff-4982-ae6b-3717076b50e4","html_url":"https://github.com/pirafrank/jekyll-listme","commit_stats":null,"previous_names":["pirafrank/jekyll-listme"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/pirafrank/jekyll-listme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirafrank%2Fjekyll-listme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirafrank%2Fjekyll-listme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirafrank%2Fjekyll-listme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirafrank%2Fjekyll-listme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pirafrank","download_url":"https://codeload.github.com/pirafrank/jekyll-listme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirafrank%2Fjekyll-listme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29446353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T12:43:28.304Z","status":"ssl_error","status_checked_at":"2026-02-14T12:43:14.160Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["categories","jekyll","jekyll-plugin","jekyll-plugins","json","plugins","tags","yaml"],"created_at":"2024-11-13T16:57:07.993Z","updated_at":"2026-02-14T14:04:54.702Z","avatar_url":"https://github.com/pirafrank.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jekyll ListMe\n\n[![Gem Version](https://img.shields.io/gem/v/jekyll-listme)](https://rubygems.org/gems/jekyll-listme)\n[![GitHub Release](https://img.shields.io/github/v/release/pirafrank/jekyll-listme)](https://github.com/pirafrank/jekyll-listme/releases/latest)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\nA [Jekyll](https://jekyllrb.com/) [command](https://jekyllrb.com/docs/plugins/commands/) plugin to list and count data in your Jekyll website. List tags, categories, and more, and count their occurrencies. Choose among various output formats.\n\n## Installation\n\n1. Add the plugin to you Jekyll site's `Gemfile` in the `:jekyll_plugins` group:\n\n```Gemfile\ngroup :jekyll_plugins do\n  gem 'jekyll-listme'\nend\n```\n\n2. Run `bundle install`\n\n### From git\n\nAlternatively, you can get code straight from this repository. Code from `main` branch should be stable enough but may contain unreleased software with bugs or breaking changes. Unreleased software should be considered of beta quality.\n\n```Gemfile\ngroup :jekyll_plugins do\n  gem 'jekyll-listme', git: 'https://github.com/pirafrank/jekyll-listme', branch: 'main'\nend\n```\n\n## Update\n\n```sh\nbundle update jekyll-listme\n```\n\n## Usage\n\nPlain text is the default output format:\n\n```sh\nbundle exec jekyll list tags\nbundle exec jekyll list categories\n```\n\nYou can choose an output format like this:\n\n```sh\nbundle exec jekyll list tags --output FORMAT\nbundle exec jekyll list categories --output FORMAT\n```\n\nYou can also count items, instead of listing them:\n\n```sh\nbundle exec jekyll list --count tags --output FORMAT\nbundle exec jekyll list --all --output FORMAT\n```\n\nSupported formats are:\n\n- `plain`\n- `json`\n- `yaml`\n- `csv`\n- `tsv`\n- `psv`\n\n## Development\n\nClone and run `bundle install` to get started.\n\nCode lives in `lib/jekyll/commands` and is referenced with `require` in `lib/jekyll/listme.rb`. To experiment with that code, run `bundle exec jekyll list` from a Jekyll site with this gem added as plugin. Read more on [Jekyll's Commands documentation](https://jekyllrb.com/docs/plugins/commands/).\n\nI got the first steps to create the template from [here](https://maxchadwick.xyz/blog/building-a-custom-jekyll-command-plugin).\n\n## Contributing\n\n[Bug reports](https://github.com/pirafrank/jekyll-listme/issues) and [pull requests](https://github.com/pirafrank/jekyll-listme/pulls) are welcome on GitHub.\n\n## Guarantee\n\nThis plugin is provided as is, without any guarantee. Use at your own risk.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpirafrank%2Fjekyll-listme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpirafrank%2Fjekyll-listme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpirafrank%2Fjekyll-listme/lists"}