{"id":24334829,"url":"https://github.com/ayan-b/spdx_xml_to_markdown","last_synced_at":"2026-04-28T05:38:06.821Z","repository":{"id":98267426,"uuid":"245758738","full_name":"ayan-b/spdx_xml_to_markdown","owner":"ayan-b","description":":arrow_forward: Convert a SPDX XML License into Markdown!","archived":false,"fork":false,"pushed_at":"2020-03-29T17:33:29.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T16:52:18.012Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ayan-b.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2020-03-08T05:38:23.000Z","updated_at":"2020-03-29T17:33:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"837c1225-c38f-4f4a-af6d-2ce921ed2685","html_url":"https://github.com/ayan-b/spdx_xml_to_markdown","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ayan-b/spdx_xml_to_markdown","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayan-b%2Fspdx_xml_to_markdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayan-b%2Fspdx_xml_to_markdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayan-b%2Fspdx_xml_to_markdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayan-b%2Fspdx_xml_to_markdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ayan-b","download_url":"https://codeload.github.com/ayan-b/spdx_xml_to_markdown/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayan-b%2Fspdx_xml_to_markdown/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32368533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-01-18T04:45:07.730Z","updated_at":"2026-04-28T05:38:06.789Z","avatar_url":"https://github.com/ayan-b.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SPDX XML to Markdown\n\nConvert a spdx-xml License into markdown.\n\n## Example\n\n```dart\nimport 'package:spdx_xml_to_markdown/spdx_xml_to_markdown.dart';\n\nvoid main() {\n  var xmlString = \"\"\"\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003cSPDXLicenseCollection xmlns=\"http://www.spdx.org/license\"\u003e\n   \u003clicense isOsiApproved=\"true\" licenseId=\"MIT\" name=\"MIT License\"\u003e\n      \u003ccrossRefs\u003e\n         \u003ccrossRef\u003ehttps://opensource.org/licenses/MIT\u003c/crossRef\u003e\n      \u003c/crossRefs\u003e\n    \u003ctext\u003e\n      \u003ctitleText\u003e\n         \u003cp\u003eMIT License\u003c/p\u003e\n      \u003c/titleText\u003e\n      \u003ccopyrightText\u003e\n         \u003cp\u003eCopyright (c) \u0026lt;year\u0026gt; \u0026lt;copyright holders\u0026gt;\n         \u003c/p\u003e\n      \u003c/copyrightText\u003e\n\n      \u003cp\u003ePermission is hereby granted, free of charge, to any person obtaining a copy of this software and\n         associated documentation files (the \"Software\"), to deal in the Software without restriction,\n         including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n         and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n         subject to the following conditions:\u003c/p\u003e\n      \u003cp\u003eThe above copyright notice and this permission notice\n         \u003coptional\u003e(including the next paragraph)\u003c/optional\u003e\n         shall be included in all copies or substantial\n         portions of the Software.\u003c/p\u003e\n      \u003cp\u003eTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\n         LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n         NO EVENT SHALL \u003calt match=\".+\" name=\"copyrightHolder\"\u003eTHE AUTHORS OR COPYRIGHT HOLDERS\u003c/alt\u003e BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n         WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n         SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\u003c/p\u003e\n    \u003c/text\u003e\n  \u003c/license\u003e\n\u003c/SPDXLicenseCollection\u003e\n  \"\"\";\n  print(parse(xmlString));\n}\n```\n\nSee [`example`](./example/README.md) for more usage.\n\n## Assumptions\n\n- `alt`s are not printed.\n- `optional`s are not printed.\n\n## LICENSE\n\n[BSD 3-Clause](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayan-b%2Fspdx_xml_to_markdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayan-b%2Fspdx_xml_to_markdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayan-b%2Fspdx_xml_to_markdown/lists"}