{"id":17086473,"url":"https://github.com/dasch/ecurly","last_synced_at":"2025-10-29T09:33:54.638Z","repository":{"id":9489969,"uuid":"11380020","full_name":"dasch/ecurly","owner":"dasch","description":"Curly templates for Erlang!","archived":false,"fork":false,"pushed_at":"2013-07-16T12:48:42.000Z","size":124,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-28T20:42:01.695Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Erlang","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/dasch.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":"2013-07-12T23:23:51.000Z","updated_at":"2014-02-15T17:33:41.000Z","dependencies_parsed_at":"2022-08-28T21:10:34.034Z","dependency_job_id":null,"html_url":"https://github.com/dasch/ecurly","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dasch%2Fecurly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dasch%2Fecurly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dasch%2Fecurly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dasch%2Fecurly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dasch","download_url":"https://codeload.github.com/dasch/ecurly/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245115484,"owners_count":20563174,"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":[],"created_at":"2024-10-14T13:28:45.497Z","updated_at":"2025-10-29T09:33:54.561Z","avatar_url":"https://github.com/dasch.png","language":"Erlang","funding_links":[],"categories":[],"sub_categories":[],"readme":"ecurly\n======\n\nCurly templates for Erlang!\n\n```erlang\n% Templates are simple strings:\nTemplate = \"Hello {{name}}!\",\n\n% You can render the template using `curly:render_with_dict` if you want to\n% supply the values of the references with a dict().\nDict = dict:from_list([{name, \"World\"}]),\n{ok, \"Hello World!\"} = curly:render_with_dict(Template, Dict),\n\n% You can also use a module to supply the values. It needs to export a function\n% with the name of the reference. In this example, `some_module` exports\n% `name/0`.\n{ok, \"Hello World!\"} = curly:render_with_module(Template, some_module),\n\n% Finally, you can supply a function of your own to look up reference values.\nPresenter = fun(Reference) -\u003e\n    case Reference of\n        \"name\" -\u003e \"World\"\n    end\nend,\n{ok, \"Hello World!\"} = curly:render(Template, Presenter),\n\nkthxbye.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdasch%2Fecurly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdasch%2Fecurly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdasch%2Fecurly/lists"}