{"id":15481784,"url":"https://github.com/markwoodhall/marge","last_synced_at":"2026-02-28T05:04:08.328Z","repository":{"id":62433535,"uuid":"109049610","full_name":"markwoodhall/marge","owner":"markwoodhall","description":"Markdown generation for Clojure","archived":false,"fork":false,"pushed_at":"2024-10-08T20:17:51.000Z","size":893,"stargazers_count":14,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-01T10:39:31.275Z","etag":null,"topics":["clojure","markdown"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","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/markwoodhall.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-10-31T20:36:35.000Z","updated_at":"2024-10-08T20:14:30.000Z","dependencies_parsed_at":"2024-11-08T18:00:46.242Z","dependency_job_id":"19cdfbb1-fdf9-463e-89ab-d475e0e78b36","html_url":"https://github.com/markwoodhall/marge","commit_stats":{"total_commits":101,"total_committers":2,"mean_commits":50.5,"dds":0.00990099009900991,"last_synced_commit":"35036573585f282306c02daf9dd4b708c393e5b8"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/markwoodhall/marge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwoodhall%2Fmarge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwoodhall%2Fmarge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwoodhall%2Fmarge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwoodhall%2Fmarge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markwoodhall","download_url":"https://codeload.github.com/markwoodhall/marge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwoodhall%2Fmarge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29925524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"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":["clojure","markdown"],"created_at":"2024-10-02T05:06:09.386Z","updated_at":"2026-02-28T05:04:08.295Z","avatar_url":"https://github.com/markwoodhall.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# marge\nMarkdown generation for Clojure and ClojureScript.\n\n## Status\n\n[![CircleCI](https://circleci.com/gh/markwoodhall/marge.svg?style=svg)](https://circleci.com/gh/markwoodhall/marge)\n[![Clojars Project](https://img.shields.io/clojars/v/marge.svg)](http://clojars.org/marge)\n\n## Usage\n\n\n```clojure\n(require '[marge.core :as marge])\n```\n\n### Headings\n\n```clojure\n(marge/markdown \n [:h4 \"My Heading\"])\n```\n\n#### My Heading\n\n### Quotes\n\n```clojure\n(marge/markdown\n [:blockquote \"Something quote worthy!\"])\n```\n\n\u003e Something quote worthy!\n\n### Normal\n\n```clojure\n(marge/markdown\n [:normal \"Done this!\"])\n```\n\nDone this!\n\n### Strikethrough\n\n```clojure\n(marge/markdown\n [:strikethrough \"Done this!\"])\n```\n\n~~Done this!~~\n\n\n### Strong\n\n```clojure\n(marge/markdown\n [:strong \"Done this!\"])\n```\n\n**Done this!**\n\n### Emphasis\n\n```clojure\n(marge/markdown\n [:em \"Done this!\"])\n```\n\n*Done this!*\n\n### Lists\n\n```clojure\n(marge/markdown\n [:ol [\"Item 1\" \"Item 2\"]])\n```\n\n1. Item 1\n2. Item 2\n\n```clojure\n(marge/markdown\n [:ul [\"Item 1\" \"Item 2\"]])\n```\n\n+ Item 1\n+ Item 2\n\n```clojure\n(marge/markdown\n [:ol [\"Item 1\" \n       [:ul \"Sub Item 1\" \"Sub Item 2\"]\n       \"Item 2\"]])\n```\n\n1. Item 1\n  + Sub Item 1\n  + Sub Item 2\n2. Item 2\n\n```clojure\n(marge/markdown\n [:ul [{:done? true :task \"Item 1\"} {:done? false :task \"Item 2\"}]])\n```\n\n+ [x] Item 1\n+ [ ] Item 2\n\n### Links\n\n```clojure\n(marge/markdown \n [:link \n  {:text \"I'm an inline-style link\" \n   :title \"Google Homepage\"\n   :url \"https://www.google.com\"}])\n```\n\n[I'm an inline-style link](https://www.google.com \"Google Homepage\")\n\n\n### Anchors\n\nSometimes you might want to place an anchor that you link to later.\n\n```clojure\n(marge/markdown \n [:anchor \"Anchor\"])\n```\n\n\u003ca name=\"Anchor\"\u003e\u003c/a\u003e\n\n\n[Test Anchor Link](#Anchor)\n\n### Horizontal Rule\n\n```clojure\n(marge/markdown \n [:hr])\n```\n\n---\n\n### Code\n\n```clojure\n(marge/markdown \n [:code\n  {:clojure \"(def data [1 2 3])\"}])\n```\n\n```clojure\n(def data [1 2 3])\n```\n\n### Tables\n\n```clojure\n(markdown \n  [:table\n   [\"Product\" \n    [\"Coke\" \"Fanta\" \"Lilt\"] \n    \"Quantity\" \n    [\"100\" \"10000000\" \"1\"]\n    \"Price\"\n    [\"$70\" \"$7000000\" \"$2\"]]])\n```\n\n| Product | Quantity | Price    |\n| ------- | -------- | -------- |\n| Coke    | 100      | $70      |\n| Fanta   | 10000000 | $7000000 |\n| Lilt    | 1        | $2       |\n\n\n#### Markdown in a table\n\n```clojure\n(markdown \n  [:table\n   [\"Title\" \n    [\"link\"]\n    \"Links\" \n    [:link {:url \"url\" :text \"text\"}]]])\n```\n\n| Title | Links       |\n| ----- | ----------- |\n| link  | [text](url) |\n\n### HTML Inside Markdown\n\nYou can generate html inside your markdown using Hiccup syntax, the rendering for this uses Hiccup for Clojure or Hiccups for ClojureScript.\n\n```clojure\n(markdown [:p \n           [:normal \"When I want to search for things I go to \"\n            :html [:a {:href \"http://google.com\"} \"google\"]]])\n```\n\nWhen I want to search for things I go to \u003ca href=\"http://google.com\"\u003egoogle\u003c/a\u003e\n\n### Composition\n\n```clojure\n(markdown [:p \n           [:normal \"When I want to search for things I go to \"\n            :em [:link {:url \"http://google.com\" :text \"google\"}]]])\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkwoodhall%2Fmarge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkwoodhall%2Fmarge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkwoodhall%2Fmarge/lists"}