{"id":20500504,"url":"https://github.com/poti1/pod-lol","last_synced_at":"2026-02-11T05:02:10.817Z","repository":{"id":49839265,"uuid":"493575992","full_name":"poti1/pod-lol","owner":"poti1","description":"Parse Pod into a list of lists (LOL)","archived":false,"fork":false,"pushed_at":"2025-05-28T10:09:49.000Z","size":97,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-20T04:46:28.482Z","etag":null,"topics":["hacktoberfest","parser","perl","perl5","perldoc","pod"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/poti1.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":null,"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":"2022-05-18T08:31:50.000Z","updated_at":"2025-05-28T10:09:53.000Z","dependencies_parsed_at":"2024-11-15T18:22:12.593Z","dependency_job_id":"a330a98b-857d-47ff-8a6f-feb49dc1b457","html_url":"https://github.com/poti1/pod-lol","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/poti1/pod-lol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poti1%2Fpod-lol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poti1%2Fpod-lol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poti1%2Fpod-lol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poti1%2Fpod-lol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/poti1","download_url":"https://codeload.github.com/poti1/pod-lol/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poti1%2Fpod-lol/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29327095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T03:52:29.695Z","status":"ssl_error","status_checked_at":"2026-02-11T03:52:23.094Z","response_time":97,"last_error":"SSL_read: 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":["hacktoberfest","parser","perl","perl5","perldoc","pod"],"created_at":"2024-11-15T18:21:05.063Z","updated_at":"2026-02-11T05:02:10.802Z","avatar_url":"https://github.com/poti1.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NAME\n\nPod::LOL - parse Pod into a list of lists (LOL)\n\n# VERSION\n\nVersion 0.14\n\n# SYNOPSIS\n\n    % cat my.pod\n\n    =head1 NAME\n\n    Pod::LOL - parse Pod into a list of lists (LOL)\n\n\n    % perl -MPod::LOL -MData::Dumper -e 'print Dumper( Pod::LOL-\u003enew_root(\"my.pod\") )'\n\nReturns:\n\n    [\n       [\n          \"head1\",\n          \"NAME\"\n       ],\n       [\n          \"Para\",\n          \"Pod::LOL - parse Pod into a list of lists (LOL)\"\n       ],\n    ]\n\n# DESCRIPTION\n\nThis class may be of interest to anyone writing a pod parser.\n\nThis module takes pod (as a file) and returns a list of lists (LOL) structure.\n\nThis is a subclass of [Pod::Simple](https://metacpan.org/pod/Pod%3A%3ASimple) and inherits all of its methods.\n\n# SUBROUTINES/METHODS\n\n## new\\_root\n\nConvenience method to do (mostly) this:\n\n    Pod::LOL-\u003enew-\u003eparse_file( $file )-\u003e{root};\n\n## \\_handle\\_element\\_start\n\nOverrides Pod::Simple.\nExecuted when a new pod element starts such as:\n\n    \"head1\"\n    \"Para\"\n\n## \\_handle\\_text\n\nOverrides Pod::Simple.\nExecuted for each text element such as:\n\n    \"NAME\"\n    \"Pod::LOL - parse Pod into a list of lists (LOL)\"\n\n## \\_handle\\_element\\_end\n\nOverrides Pod::Simple.\nExecuted when a pod element ends.\nSuch as when these tags end:\n\n    \"head1\"\n    \"Para\"\n\n# SEE ALSO\n\n[App::Pod](https://metacpan.org/pod/App%3A%3APod)\n\n[Pod::Query](https://metacpan.org/pod/Pod%3A%3AQuery)\n\n[Pod::Simple](https://metacpan.org/pod/Pod%3A%3ASimple)\n\n# AUTHOR\n\nTim Potapov, `\u003ctim.potapov[AT]gmail.com\u003e`\n\n# BUGS\n\nPlease report any bugs or feature requests to [https://github.com/poti1/pod-lol/issues](https://github.com/poti1/pod-lol/issues).\n\n# SUPPORT\n\nYou can find documentation for this module with the perldoc command.\n\n    perldoc Pod::LOL\n\nYou can also look for information at:\n\n[https://metacpan.org/pod/Pod::LOL](https://metacpan.org/pod/Pod::LOL)\n[https://github.com/poti1/pod-lol](https://github.com/poti1/pod-lol)\n\n# ACKNOWLEDGEMENTS\n\nTBD\n\n# LICENSE AND COPYRIGHT\n\nThis software is Copyright (c) 2022 by Tim Potapov.\n\nThis is free software, licensed under:\n\n    The Artistic License 2.0 (GPL Compatible)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpoti1%2Fpod-lol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpoti1%2Fpod-lol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpoti1%2Fpod-lol/lists"}