{"id":19916822,"url":"https://github.com/srackham/go-rimu","last_synced_at":"2026-02-11T11:02:05.608Z","repository":{"id":57546671,"uuid":"147763883","full_name":"srackham/go-rimu","owner":"srackham","description":"A port of the Rimu Markup language written in the Go language.","archived":false,"fork":false,"pushed_at":"2025-01-21T02:08:33.000Z","size":440,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-28T00:14:36.680Z","etag":null,"topics":["asciidoc","go","golang","markdown","rimu"],"latest_commit_sha":null,"homepage":"https://srackham.github.io/rimu","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","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":"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":"2018-09-07T03:11:50.000Z","updated_at":"2025-01-21T02:08:37.000Z","dependencies_parsed_at":"2025-03-01T09:41:28.248Z","dependency_job_id":null,"html_url":"https://github.com/srackham/go-rimu","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/srackham/go-rimu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fgo-rimu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fgo-rimu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fgo-rimu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fgo-rimu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srackham","download_url":"https://codeload.github.com/srackham/go-rimu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fgo-rimu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29332292,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T06:13:03.264Z","status":"ssl_error","status_checked_at":"2026-02-11T06:12:55.843Z","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":["asciidoc","go","golang","markdown","rimu"],"created_at":"2024-11-12T21:47:43.661Z","updated_at":"2026-02-11T11:02:05.591Z","avatar_url":"https://github.com/srackham.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rimu Markup for Go\n\n_go-rimu_ is a port of the [Rimu Markup\nlanguage](https://github.com/srackham/rimu) written in the Go language.\n\n## Features\n\nFunctionally identical to the [JavaScript\nimplementation](https://github.com/srackham/rimu) version 11.4 with\nthe following exceptions:\n\n-   Because the Go `regexp` package uses RE2 regular expressions there are\n    [some limitations](https://srackham.github.io/rimu/reference.html#regular-expressions)\n    on the regular expressions used in Replacements definitions and\n    Inclusion/Exclusion macro invocations.\n\n## Installation\n\nDownload, build, test and install (requires Go 1.17 or better):\n\n    git clone https://github.com/srackham/go-rimu.git\n    cd go-rimu\n    make\n\n## Using the go-rimu library\n\nExample usage:\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n\n    \"github.com/srackham/go-rimu/v11/rimu\"\n)\n\nfunc main() {\n    // Prints \"\u003cp\u003e\u003cem\u003eHello Rimu\u003c/em\u003e!\u003c/p\u003e\"\n    fmt.Println(rimu.Render(\"*Hello Rimu*!\", rimu.RenderOptions{}))\n}\n```\n\nTo compile and run this simple application:\n\n1.  Copy the code above to a file named `hello-rimu.go` and put it in an empty\n    directory.\n2.  Change to the directory and run the following Go commands:\n\n        go mod init example.com/hello-rimu\n        go mod tidy\n        go run hello-rimu.go\n\nSee also Rimu\n[API documentation](https://srackham.github.io/rimu/reference.html#api).\n\n## Rimu CLI command\n\nThe [Rimu CLI command](https://srackham.github.io/rimu/reference.html#rimuc-command) is named\n`rimugo`.\n\n## Learn more\n\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\nSee the Rimu [Change\nLog](http://srackham.github.io/rimu/changelog.html) for the latest\nchanges.\n\n## Implementation\n\n-   The largely one-to-one correspondence between the canonical\n    [TypeScript code](https://github.com/srackham/rimu) and the Go code\n    eased porting and debugging. This will also make it easier to\n    cross-port new features and bug-fixes.\n\n-   All Rimu implementations share the same JSON driven test suites\n    comprising over 300 compatibility checks.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrackham%2Fgo-rimu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrackham%2Fgo-rimu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrackham%2Fgo-rimu/lists"}