{"id":33904933,"url":"https://github.com/jevko/jevkoml","last_synced_at":"2026-06-08T14:32:07.525Z","repository":{"id":63544978,"uuid":"567846432","full_name":"jevko/jevkoml","owner":"jevko","description":"(EXPERIMENTAL) A Jevko format for markup translatable to HTML or XML.","archived":false,"fork":false,"pushed_at":"2023-01-23T22:28:21.000Z","size":125,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-05T23:49:54.221Z","etag":null,"topics":["convert","deno","format","html","jevko","jevkoml","markup","minimal","syntax","text","translate","xml"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/jevko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-18T18:10:14.000Z","updated_at":"2022-11-23T23:16:59.000Z","dependencies_parsed_at":"2023-02-13T04:15:22.829Z","dependency_job_id":null,"html_url":"https://github.com/jevko/jevkoml","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/jevko/jevkoml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jevko%2Fjevkoml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jevko%2Fjevkoml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jevko%2Fjevkoml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jevko%2Fjevkoml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jevko","download_url":"https://codeload.github.com/jevko/jevkoml/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jevko%2Fjevkoml/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34067348,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"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":["convert","deno","format","html","jevko","jevkoml","markup","minimal","syntax","text","translate","xml"],"created_at":"2025-12-12T01:42:43.057Z","updated_at":"2026-06-08T14:32:07.521Z","avatar_url":"https://github.com/jevko.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"NOTE: experimental\n\n# jevkoml\n\nCodename .jevkoml.\n\nA [Jevko](https://jevko.org) format for markup that translates to HTML/XML.\n\nCompared to HTML or XML, .jevkoml is delightful to write, edit, or generate -- by hand or otherwise.\n\n.jevkoml can make authoring and maintaining HTML documents, XML configurations, SVG graphics, and countless other XML-based formats much more pleasant.\n\nGives you the full power of XML by supporting its data model and XML literals.\n\nOn top of that you get a much simpler and leaner syntax with:\n\n* here documents (heredocs) -- like CDATA, but with user-defined end-marker, so no issues with being unable to escape the `]]\u003e` token\n* ability to disable (comment out) an entire subtree by prefixing it with `-` -- much more convenient and powerful than HTML/XML comments\n\n.jevkoml is best used in combination with the [Jevko CLI](https://github.com/jevko/jevko-cli) -- which gives you additional features, such as:\n\n* self-contained .jevkoml documents that know how to convert themselves to specific HTML/XML files\n* ability to wrap the HTML/XML result in a root tag or a sequence of nested tags with top-level attributes applied to the root\n* ability to make .jevkoml documents executable thanks to Jevko CLI support for shebangs -- you can convert a document simply by executing it!\n\n\u003c!-- Jevko is closed under concatenation --\u003e\n\n\u003c!-- In the future, JevkoML could also be used directly by various tools, for increased efficiency. --\u003e\n\n## Example\n\nFor example, a .jevkoml document like:\n\n\u003c!-- [ ] see a version with syntax highlighting (htmlpreview), [x] get a syntax highlighting extension for visual studio code --\u003e\n\n![screenshot](screenshot.png)\n\nconverts into something like this:\n\n```HTML\n\u003chtml\u003e\n  \u003chead\u003e\n    \u003ctitle\u003eThis is a title\u003c/title\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv\u003e\n      \u003cp\u003eHello world!\u003c/p\u003e\n      \u003cabbr\n        id=\"anId\"\n        class=\"jargon\"\n        style=\"color: purple;\"\n        title=\"Hypertext Markup Language\"\n      \u003eHTML\u003c/abbr\u003e\n      \u003ca href=\"https://www.wikipedia.org/\"\u003e\n        A link to Wikipedia!\n      \u003c/a\u003e\n      \u003cp\u003e\n        Oh well, \u003cspan lang=\"fr\"\u003ec'est la vie\u003c/span\u003e, as they say in France.\n      \u003c/p\u003e\n    \u003c/div\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\n```\n\nSee [jevkoml.md](jevkoml.md) for details.\n\nAlso see the [.jevkoml syntax highlighting extension for Visual Studio Code](https://github.com/jevko/jevkoml-basic-highlighting-vscode) which was used to produce the screenshot above.\n\n\u003c!-- ## Dependencies\n\n`jevkoml` has one dependency: [Deno](https://deno.land/).\n\nFortunately Deno is very nice and [easy to install](https://deno.land/manual@v1.28.1/getting_started/installation). --\u003e\n\n\u003c!-- I recommend installing it, as it makes installing and managing `jevkoml` easy and efficient. --\u003e\n\n\u003c!-- todo: better writing --\u003e\n# HTML/XML literals\n\nYou can enter literal HTML/XML which will not be escaped in the output via `` `'xml' `` or `` `'html' `` heredocs. For example:\n\n```\n`'html'\n\u003c!doctype html\u003e\n\u003chtml\u003e\n'html'\n\np [hello]\n\n`'html'\n\u003c/html\u003e\n'html'\n```\n\nwill produce something like:\n\n```html\n\u003c!doctype html\u003e\n\u003chtml\u003e\n\u003cp\u003ehello\u003c/p\u003e\n\u003c/html\u003e\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjevko%2Fjevkoml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjevko%2Fjevkoml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjevko%2Fjevkoml/lists"}