{"id":18656163,"url":"https://github.com/alinkedd/rich-github-repo","last_synced_at":"2025-11-05T20:30:33.830Z","repository":{"id":219615573,"uuid":"749473746","full_name":"alinkedd/rich-github-repo","owner":"alinkedd","description":"Everything you want in your GitHub repo","archived":false,"fork":false,"pushed_at":"2024-09-05T10:00:31.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T14:42:11.908Z","etag":null,"topics":["format","github","repo","rich"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alinkedd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2024-01-28T17:29:45.000Z","updated_at":"2024-09-07T11:12:53.000Z","dependencies_parsed_at":"2024-01-28T18:49:30.849Z","dependency_job_id":null,"html_url":"https://github.com/alinkedd/rich-github-repo","commit_stats":null,"previous_names":["alinkedd/rich-github-repo"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alinkedd%2Frich-github-repo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alinkedd%2Frich-github-repo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alinkedd%2Frich-github-repo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alinkedd%2Frich-github-repo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alinkedd","download_url":"https://codeload.github.com/alinkedd/rich-github-repo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239471098,"owners_count":19644250,"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":["format","github","repo","rich"],"created_at":"2024-11-07T07:22:12.611Z","updated_at":"2025-11-05T20:30:33.784Z","avatar_url":"https://github.com/alinkedd.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"[./README.md](./README.md)\n\n# rich-github-repo\n\n## Formatting\n\n### Basic\n\nhttps://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax\n\n#### Emoji\n\nhttps://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#using-emojis\n\n`:smile:` :smile:, `:+1:` :+1:, `:new:` :new:, `:white_check_mark:` :white_check_mark:\n\nLists:\n- https://github.com/ikatyang/emoji-cheat-sheet\n- https://gist.github.com/rxaviers/7360908\n\n### Tables\n\nhttps://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables\n\n| Command | Description |\n| --- | --- |\n| `git status` | List all *new or modified* files |\n| `git diff` | Show file differences that **haven't been** staged |\n\n| Left-aligned | Center-aligned | Right-aligned |\n| :---         |     :---:      |          ---: |\n| git status   | git status     | git status    |\n| git diff     | git diff       | git diff      |\n\n| Name     | Character |\n| ---      | ---       |\n| Backtick | `         |\n| Pipe     | \\|        |\n\n### Collapsed sections (or accordion items)\n\nhttps://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections\n\n\u003cdetails\u003e\n\n\u003csummary\u003eTips for collapsed sections\u003c/summary\u003e\n\n#### You can add a header\n\nYou can add text within a collapsed section. \n\nYou can add an image or a code block, too.\n\n```ruby\n   puts \"Hello World\"\n```\n\n\u003c/details\u003e\n\n### Code blocks\n\nhttps://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks\n\n```\nfunction test() {\n  console.log(\"notice the blank line before this function?\");\n}\n```\n\n```js\nfunction test() {\n  console.log(\"notice the blank line before this function?\");\n}\n```\n\n````\n```\nLook! You can see my backticks.\n```\n````\n\n### Diagrams\n\nhttps://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams\n\n```mermaid\ngraph TD;\n    A--\u003eB;\n    A--\u003eC;\n    B--\u003eD;\n    C--\u003eD;\n```\n\n```geojson\n{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"id\": 1,\n      \"properties\": {\n        \"ID\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n              [-90,35],\n              [-90,30],\n              [-85,30],\n              [-85,35],\n              [-90,35]\n          ]\n        ]\n      }\n    }\n  ]\n}\n```\n\n```topojson\n{\n  \"type\": \"Topology\",\n  \"transform\": {\n    \"scale\": [0.0005000500050005, 0.00010001000100010001],\n    \"translate\": [100, 0]\n  },\n  \"objects\": {\n    \"example\": {\n      \"type\": \"GeometryCollection\",\n      \"geometries\": [\n        {\n          \"type\": \"Point\",\n          \"properties\": {\"prop0\": \"value0\"},\n          \"coordinates\": [4000, 5000]\n        },\n        {\n          \"type\": \"LineString\",\n          \"properties\": {\"prop0\": \"value0\", \"prop1\": 0},\n          \"arcs\": [0]\n        },\n        {\n          \"type\": \"Polygon\",\n          \"properties\": {\"prop0\": \"value0\",\n            \"prop1\": {\"this\": \"that\"}\n          },\n          \"arcs\": [[1]]\n        }\n      ]\n    }\n  },\n  \"arcs\": [[[4000, 0], [1999, 9999], [2000, -9999], [2000, 9999]],[[0, 0], [0, 9999], [2000, 0], [0, -9999], [-2000, 0]]]\n}\n```\n\n```stl\nsolid cube_corner\n  facet normal 0.0 -1.0 0.0\n    outer loop\n      vertex 0.0 0.0 0.0\n      vertex 1.0 0.0 0.0\n      vertex 0.0 0.0 1.0\n    endloop\n  endfacet\n  facet normal 0.0 0.0 -1.0\n    outer loop\n      vertex 0.0 0.0 0.0\n      vertex 0.0 1.0 0.0\n      vertex 1.0 0.0 0.0\n    endloop\n  endfacet\n  facet normal -1.0 0.0 0.0\n    outer loop\n      vertex 0.0 0.0 0.0\n      vertex 0.0 0.0 1.0\n      vertex 0.0 1.0 0.0\n    endloop\n  endfacet\n  facet normal 0.577 0.577 0.577\n    outer loop\n      vertex 1.0 0.0 0.0\n      vertex 0.0 1.0 0.0\n      vertex 0.0 0.0 1.0\n    endloop\n  endfacet\nendsolid\n```\n\n### Mathematical expressions\n\nhttps://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/writing-mathematical-expressions\n\n```\nThis sentence uses `$` delimiters to show math inline:  $\\sqrt{3x-1}+(1+x)^2$\n```\n$\\sqrt{3x-1}+(1+x)^2$\n\n```\nThis sentence uses $\\` and \\`$ delimiters to show math inline:  $`\\sqrt{3x-1}+(1+x)^2`$\n```\n$`\\sqrt{3x-1}+(1+x)^2`$\n\n**The Cauchy-Schwarz Inequality**\n\n```\n$$\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)$$\n```\n$$\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)$$\n\n````\n```math\n\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n```\n````\n```math\n\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n```\n\n```\nThis expression uses `\\$` to display a dollar sign: $`\\sqrt{\\$4}`$\n```\n$`\\sqrt{\\$4}`$\n\n```\nTo split \u003cspan\u003e$\u003c/span\u003e100 in half, we calculate $100/2$\n```\nTo split \u003cspan\u003e$\u003c/span\u003e100 in half, we calculate $100/2$\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falinkedd%2Frich-github-repo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falinkedd%2Frich-github-repo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falinkedd%2Frich-github-repo/lists"}