{"id":26956417,"url":"https://github.com/darrensem/md","last_synced_at":"2025-07-07T02:05:58.889Z","repository":{"id":192866269,"uuid":"687623467","full_name":"DarrenSem/md","owner":"DarrenSem","description":"Markdown cheatsheet - combination of the popular ones commonly seen + some ChatGPT responses","archived":false,"fork":false,"pushed_at":"2023-09-05T17:05:45.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T03:31:36.800Z","etag":null,"topics":["chatgpt","cheatsheet","combination","commonly","markdown","md","popular","reference","wysiwyg"],"latest_commit_sha":null,"homepage":"https://darrensem.github.io/md/","language":null,"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/DarrenSem.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}},"created_at":"2023-09-05T16:54:24.000Z","updated_at":"2023-09-05T17:04:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"d0c984d1-49b2-4d62-8a0d-67e23da69d10","html_url":"https://github.com/DarrenSem/md","commit_stats":null,"previous_names":["darrensem/md"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DarrenSem/md","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarrenSem%2Fmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarrenSem%2Fmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarrenSem%2Fmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarrenSem%2Fmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DarrenSem","download_url":"https://codeload.github.com/DarrenSem/md/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DarrenSem%2Fmd/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264000628,"owners_count":23542112,"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":["chatgpt","cheatsheet","combination","commonly","markdown","md","popular","reference","wysiwyg"],"created_at":"2025-04-03T03:29:54.599Z","updated_at":"2025-07-07T02:05:58.866Z","avatar_url":"https://github.com/DarrenSem.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Markdown cheatsheet\n\n***MarkDown*** cheatsheet - my combination of the popular ones commonly seen + some ChatGPT responses\n\n\n1. **Headers**\n\n  ```\n  # This is an \u003ch1\u003e tag\n  ## This is an \u003ch2\u003e tag\n  ### This is an \u003ch3\u003e tag\n  #### This is an \u003ch4\u003e tag\n  ##### This is an \u003ch5\u003e tag\n  ###### This is an \u003ch6\u003e tag\n  ```\n# This is an \u003ch1\u003e tag\n## This is an \u003ch2\u003e tag\n### This is an \u003ch3\u003e tag\n#### This is an \u003ch4\u003e tag\n##### This is an \u003ch5\u003e tag\n###### This is an \u003ch6\u003e tag\n\n\n2. **Emphasis**\n\n  ```\n  *This text will be italic*\n  _This will also be italic_\n\n  **This text will be bold**\n  __This will also be bold__\n\n  _You **can** combine them_\n\n  ~~Strikethrough~~\n\n  Horizontal Rule:\n  ___\n  ```\n*This text will be italic*\n_This will also be italic_\n\n**This text will be bold**\n__This will also be bold__\n\n_You **can** combine them_\n\n~~Strikethrough~~\n\nHorizontal Rule:\n___\n\n\n3. **Unordered List**\n\n  ```\n  - Item 1\n  - Item 2\n    - Item 2a\n  ...with no line break this continues onto the next line keeping same indent as 2a\n    - Item 2b\n    -\n  ^ ending with a bare empty bullet item (on level 2)\n  ```\n\n  ```\n  + Item 1\n  + Item 2\n    + Item 2a\n  ...with no line break this continues onto the next line keeping same indent as 2a\n    + Item 2b\n    +\n  ^ ending with a bare empty bullet item (on level 2)\n  ```\n\n  ```\n  * Item 1\n  * Item 2\n    * Item 2a\n  ...with no line break this continues onto the next line keeping same indent as 2a\n    * Item 2b\n    *\n  ^ ending with a bare empty bullet item (on level 2)\n  ```\n- Item 1\n+ Item 2\n  * Item 2a\n...with no line break this continues onto the next line keeping same indent as 2a\n  - Item 2b\n  -\n^ ending with a bare empty bullet item (on level 2)\n\n\n4. **Task Lists / TODO / Checkboxes**\n\n  ```\n  - [x] Item 1 with filled in checkbox\n  - [ ] Item 2 empty unchecked\n  - [ ] Item 3\n    - [X] Item 3a with UpperCase 'X' for filled in checkbox\n    - [x]\n  this still continues onto the next line keeping same indent as its parent -- which is just the text `[x]` instead of converting into a checkbox (on level 2)\n  BUT[x]--with whitespace ON ITS RIGHT SIDE-- in the middle of a line:[x] \u003c will convert to a new checkbox **while omitting all that came before it**\n  ```\n- [x] Item 1 with filled in checkbox\n+ [ ] Item 2 empty unchecked\n* [ ] Item 3\n  - [X] Item 3a with UpperCase 'X' for filled in checkbox\n  - [x]\nthis still continues onto the next line keeping same indent as its parent -- which is just the text `[x]` instead of converting into a checkbox (on level 2)\nBUT[x]--with whitespace ON ITS RIGHT SIDE-- in the middle of a line:[x] \u003c will convert to a new checkbox **while omitting all that came before it**\n\n\n5. **Ordered List**\n\n  ```\n  1. Item 1\n  4. Item 2\n  2. Item 3\n     5. Item 5 under #3 (3 spaces needed, not just 2?)\n     7. Item 6 under #3\n  ```\n1. Item 1\n4. Item 2\n2. Item 3\n   5. Item 5 under #3 (3 spaces needed, not just 2?)\n   7. Item 6 under #3\n\n\n6. **Links**\n\n  ```\n  http://github.com - automatic!\n  [GitHub](http://github.com)\n  [GitHub](http://github.com \"title text too!\")\n  ```\nhttp://github.com - automatic!\n[GitHub](http://github.com)\n[GitHub](http://github.com \"title text too!\")\n\n\n7. **Images**\n\n  ```\n  Format: ![Alt Text](url)\n  ![GitHub Logo](/images/logo.png)\n\n  ![GitHub Logo](/images/logo.png \"title text too -- visible when you hover, different than Alt Text, esp. helpful for a _broken link_ 'image' AKA no image actually shown.\")\n\n  ![alt-text:   pfp for https://github.com/mathiasbynens](https://avatars.githubusercontent.com/u/81942?v=4 \"title-hover:   Mathias' pfp\")\n  ```\nFormat: ![Alt Text](url)\n\n![GitHub Logo](/images/logo.png)\n\n![GitHub Logo](/images/logo.png \"title text too -- visible when you hover, different than Alt Text, esp. helpful for a _broken link_ 'image' AKA no image actually shown.\")\n\n![alt-text:   pfp for https://github.com/mathiasbynens](https://avatars.githubusercontent.com/u/81942?v=4 \"title-hover:   Mathias' pfp\")\n\n\n8. **Blockquotes**\n\n  ```\n  As Kanye West said:\n\n  \u003e We're living the future so\n  \u003e the present is our past.\n  \u003e Blockquotes can also be nested...\n  \u003e\u003e ...by using additional greater-than signs right next to each other...\n  \u003e \u003e \u003e ...or with spaces between arrows.\n  ```\nAs Kanye West said:\n\n\u003e We're living the future so\n\u003e the present is our past.\n\u003e Blockquotes can also be nested...\n\u003e\u003e ...by using additional greater-than signs right next to each other...\n\u003e \u003e \u003e ...or with spaces between arrows.\n\n\n9. **Inline code**\n\n  ```\n  Inline `code` has `back-ticks around` it.\n  ```\nInline `code` has `back-ticks around` it.\n\n\n10. **Multiline Code**\n\n  ```\n  \\```js\n  /* multi-line code\n     comment.\n  */\n  var foo = function (bar) {\n    return bar++;\n  };\n\n  console.log(foo(5));\n  \\```\n  ```\n```js\n/* multi-line code\n   comment.\n*/\nvar foo = function (bar) {\n  return bar++;\n};\n\nconsole.log(foo(5));\n```\n\n\n11. **Tables**\n\n  ```\n  | Formatting  | Syntax    | Example |\n  | ----------- | --------- | ------- |\n  | Italic      | `* *` or `_ _` | *italic*  |\n  | Bold        | `** **` or `__ __`  | **bold** |\n\n  Right aligned columns\n\n  | Option | Description (right-aligned) |\n  | ------:| -----------:|\n  | data   | path to data files to supply the data that will be passed into templates. |\n  | engine | engine to be used for processing templates. Handlebars is the default. |\n  | ext    | extension to be used for dest files. |\n  ```\n| Formatting  | Syntax    | Example |\n| ----------- | --------- | ------- |\n| Italic      | `* *` or `_ _` | *italic*  |\n| Bold        | `** **` or `__ __`  | **bold** |\n\nRight aligned columns\n\n| Option | Description (right-aligned) |\n| ------:| -----------:|\n| data   | path to data files to supply the data that will be passed into templates. |\n| engine | engine to be used for processing templates. Handlebars is the default. |\n| ext    | extension to be used for dest files. |\n\n\n`-END OF LINE.`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarrensem%2Fmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarrensem%2Fmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarrensem%2Fmd/lists"}