{"id":20079556,"url":"https://github.com/transpect/idml2xml-frontend","last_synced_at":"2025-07-20T02:04:11.214Z","repository":{"id":93859537,"uuid":"87315367","full_name":"transpect/idml2xml-frontend","owner":"transpect","description":"Converts InDesign IDML to XML","archived":false,"fork":false,"pushed_at":"2024-06-21T13:59:28.000Z","size":53,"stargazers_count":16,"open_issues_count":1,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-05T23:37:20.291Z","etag":null,"topics":["docbook","idml","indesign"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/transpect.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2017-04-05T13:54:15.000Z","updated_at":"2025-01-15T10:02:16.000Z","dependencies_parsed_at":"2024-03-12T14:53:34.693Z","dependency_job_id":"1f08caf8-cfeb-4a0a-9694-80a416c7cc69","html_url":"https://github.com/transpect/idml2xml-frontend","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/transpect/idml2xml-frontend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fidml2xml-frontend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fidml2xml-frontend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fidml2xml-frontend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fidml2xml-frontend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/transpect","download_url":"https://codeload.github.com/transpect/idml2xml-frontend/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fidml2xml-frontend/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266057166,"owners_count":23870120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["docbook","idml","indesign"],"created_at":"2024-11-13T15:23:24.990Z","updated_at":"2025-07-20T02:04:11.137Z","avatar_url":"https://github.com/transpect.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# idml2xml\n\nConverts InDesign IDML to XML. Based on the transpect module [idml2xml](https://github.com/transpect/idml2xml).\n\n## Introduction\n\nConsidering this [hello world example](https://github.com/transpect/idml2xml-frontend/tree/master/sample), idml2xml will generate flat [Hub XML with CSSa XML attributes](http://publishinggeekly.com/wp-content/uploads/2013/01/CSSa.pdf). \n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003c?xml-model href=\"http://www.le-tex.de/resource/schema/hub/1.2/hub.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?\u003e\n\u003c?xml-model href=\"http://www.le-tex.de/resource/schema/hub/1.2/hub.rng\" type=\"application/xml\" schematypens=\"http://purl.oclc.org/dsdl/schematron\"?\u003e\n\u003chub xmlns=\"http://docbook.org/ns/docbook\" xmlns:css=\"http://www.w3.org/1996/css\" xml:lang=\"de-DE-2006\" version=\"5.1-variant le-tex_Hub-1.2\"\n  css:version=\"3.0-variant le-tex_Hub-1.2\" css:rule-selection-attribute=\"role\"\u003e\n  \u003cinfo\u003e\n    \u003ckeywordset role=\"hub\"\u003e\n      \u003c!-- Hub format properties --\u003e\n    \u003c/keywordset\u003e\n    \u003ccss:rules\u003e\n      \u003ccss:rule name=\"myStyle\" native-name=\"myStyle\" layout-type=\"para\" \n        css:color=\"device-cmyk(0,0,0,1)\" css:font-weight=\"normal\"\n        css:font-style=\"normal\" css:font-size=\"12pt\" css:text-transform=\"none\" \n        css:margin-left=\"0pt\" css:margin-right=\"0pt\" css:text-indent=\"0pt\"\n        xml:lang=\"de-DE-2006\" css:hyphens=\"auto\" css:margin-top=\"0pt\" \n        css:margin-bottom=\"0pt\" css:text-decoration-line=\"none\"\n        css:page-break-before=\"auto\" css:text-align=\"left\" css:direction=\"ltr\" \n        css:font-family=\"Minion Pro\"/\u003e\n    \u003c/css:rules\u003e\n  \u003c/info\u003e\n  \u003cpara role=\"myStyle\"\u003ehello world\u003c/para\u003e\n\u003c/hub\u003e\n```\n\n## Requirements\n\nAt least Java 1.7 is required.\n\n## Clone this project\n\nThis project depends on Git submodules. Therefore you have to clone it with the `--recurse-submodules` option to get the submodules, too:\n\n```\ngit clone https://github.com/transpect/idml2xml-frontend --recurse-submodules\n```\n\n## Invocation\n\n### Bash\n\nFor convenient use on command line, we provide a simple Bash script. You can run it in this way:\n```\n./idml2xml.sh sample/hello-world.idml\n```\n\n### Calabash\n\nWe provide also Bash and Windows Batch scripts to invoke the XProc pipeline directly:\n\n```\n./calabash.sh -o result=sample/hello-world.xml xpl/idml2xml-frontend.xpl idml=sample/hello-world.idml\n```\n\n## Include idml2xml in your XProc project\n\nPlease refer to this [tutorial](http://transpect.github.io/getting-started.html) for a more extensive documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftranspect%2Fidml2xml-frontend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftranspect%2Fidml2xml-frontend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftranspect%2Fidml2xml-frontend/lists"}