{"id":19916843,"url":"https://github.com/srackham/rimu-deno","last_synced_at":"2026-05-01T21:02:24.010Z","repository":{"id":141654730,"uuid":"235931633","full_name":"srackham/rimu-deno","owner":"srackham","description":"A port of the Rimu Markup language to the Deno runtime.","archived":false,"fork":false,"pushed_at":"2020-04-03T20:51:32.000Z","size":176,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-28T00:14:39.253Z","etag":null,"topics":["asciidoc","deno","markdown","rimu","rimu-markup-language","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/srackham.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-24T03:10:24.000Z","updated_at":"2020-04-03T20:51:34.000Z","dependencies_parsed_at":"2023-05-09T13:31:57.485Z","dependency_job_id":null,"html_url":"https://github.com/srackham/rimu-deno","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/srackham/rimu-deno","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Frimu-deno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Frimu-deno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Frimu-deno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Frimu-deno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srackham","download_url":"https://codeload.github.com/srackham/rimu-deno/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Frimu-deno/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32512670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["asciidoc","deno","markdown","rimu","rimu-markup-language","typescript"],"created_at":"2024-11-12T21:47:48.388Z","updated_at":"2026-05-01T21:02:23.981Z","avatar_url":"https://github.com/srackham.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rimu Markup for Deno\n\n___\n\n## **NOTE:** This project has merged with the Rimu TypeScript codebase and is no longer active.  Please visit https://github.com/srackham/rimu for the latest version of Rimu for Deno.\n\n___\n\nA port of the [Rimu Markup language](https://srackham.github.io/rimu/) to the\n[Deno](https://deno.land/) runtime.\n\n**NOTE**: This is a development release. A production release will follow once Deno has\nreached 1.0.\nIf you experience compilation errors try forcing a cache reload\nwith the Deno `fetch` command e.g. `deno fetch Drakefile.ts --reload`\n\nTested with Deno 0.38.0 running on Ubuntu 18.04.\n\n\n## Features\nFunctionally identical to the [Rimu JavaScript\nimplementation](https://github.com/srackham/rimu) version 11.1 with the\nfollowing exceptions:\n\n- Does not support deprecated _Expression macro values_.\n- Does not support deprecated _Imported Layouts_.\n\n\n## API\nExample usage:\n\n``` typescript\nimport * as rimu from \"https://raw.github.com/srackham/rimu-deno/master/mod.ts\";\n\nconsole.log(rimu.render(\"Hello *Rimu*!\"));\n```\n\nSave the above code as file `minimal-example.ts` then run it using:\n\n    deno --reload minimal-example.ts\n\nThe `--reload` option forces the latest version of the Rimu library to be downloaded.\n\nSee also the [Rimu API\ndocumentation](https://srackham.github.io/rimu/reference.html#api).\n\n\n## CLI command\nThe [Rimu CLI\ncommand](https://srackham.github.io/rimu/reference.html#rimuc-command) is\nimplemented by `rimuc.ts`.\n\nUse the Deno `install` command to install an executable CLI wrapper. The\nfollowing example creates the executable `$HOME/.deno/bin/rimudeno`:\n\n    deno install --force rimudeno --allow-env --allow-read --allow-write https://raw.github.com/srackham/rimu-deno/master/src/rimuc.ts\n\nRun it with e.g.\n\n    rimudeno --version\n\n\n## Building\nNo explicit build setup is required, just import or run the TypeScript URL.\n\n\n## Learn more about Rimu\nRead the [documentation](https://srackham.github.io/rimu/reference.html) and\nexperiment with Rimu in the [Rimu\nPlayground](http://srackham.github.io/rimu/rimuplayground.html).\n\n\n## Implementation\nThe Deno Rimu port is built using the TypeScript source code from the [canonical\nRimu implementation](https://github.com/srackham/rimu) with the following minor\nmodifications:\n\n1. An explicit `.ts` extension was added to all TypeScript import and export statements\n   (see the Makefile `update` task).\n2. `rimuc.ts` was ported from the Node.js API to the Deno API.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrackham%2Frimu-deno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrackham%2Frimu-deno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrackham%2Frimu-deno/lists"}